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