aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/rdefer-store.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/common/words/rdefer-store.asm')
-rw-r--r--amforth-6.5/common/words/rdefer-store.asm21
1 files changed, 21 insertions, 0 deletions
diff --git a/amforth-6.5/common/words/rdefer-store.asm b/amforth-6.5/common/words/rdefer-store.asm
new file mode 100644
index 0000000..906ca15
--- /dev/null
+++ b/amforth-6.5/common/words/rdefer-store.asm
@@ -0,0 +1,21 @@
+; ( xt1 xt2 -- )
+; System
+; The defer! for ram defers
+.if cpu_msp430==1
+ HEADER(XT_RDEFERSTORE,7,"Rdefer!",DOCOLON)
+.endif
+
+.if cpu_avr8==1
+VE_RDEFERSTORE:
+ .dw $ff07
+ .db "Rdefer!",0
+ .dw VE_HEAD
+ .set VE_HEAD = VE_RDEFERSTORE
+XT_RDEFERSTORE:
+ .dw DO_COLON
+PFA_RDEFERSTORE:
+.endif
+ .dw XT_FETCHI
+ .dw XT_STORE
+ .dw XT_EXIT
+