summaryrefslogtreecommitdiff
path: root/cpu/instructions/bitwise/arithmetic_shift_right.txt
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/instructions/bitwise/arithmetic_shift_right.txt')
-rw-r--r--cpu/instructions/bitwise/arithmetic_shift_right.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpu/instructions/bitwise/arithmetic_shift_right.txt b/cpu/instructions/bitwise/arithmetic_shift_right.txt
new file mode 100644
index 0000000..d7ea8a7
--- /dev/null
+++ b/cpu/instructions/bitwise/arithmetic_shift_right.txt
@@ -0,0 +1,10 @@
+Number of parameters: 3
+
+Usage:
+ arithmetic_shift_right <output> <value> <amount>
+
+Effect:
+ Sets <output> to <value> shifted to the right <amount> bits, filling in leading bits with the most significant bit of <value>
+
+Exceptions:
+ None