aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/msp430/words/1-plus.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/msp430/words/1-plus.asm')
-rw-r--r--amforth-6.5/msp430/words/1-plus.asm4
1 files changed, 4 insertions, 0 deletions
diff --git a/amforth-6.5/msp430/words/1-plus.asm b/amforth-6.5/msp430/words/1-plus.asm
new file mode 100644
index 0000000..c9d78d2
--- /dev/null
+++ b/amforth-6.5/msp430/words/1-plus.asm
@@ -0,0 +1,4 @@
+;C 1+ n1/u1 -- n2/u2 add 1 to TOS
+ CODEHEADER(XT_1PLUS,2,"1+")
+ ADD #1,TOS
+ NEXT