aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/avr8/words/execute.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/avr8/words/execute.asm')
-rw-r--r--amforth-6.5/avr8/words/execute.asm14
1 files changed, 14 insertions, 0 deletions
diff --git a/amforth-6.5/avr8/words/execute.asm b/amforth-6.5/avr8/words/execute.asm
new file mode 100644
index 0000000..4a2308d
--- /dev/null
+++ b/amforth-6.5/avr8/words/execute.asm
@@ -0,0 +1,14 @@
+; ( xt -- )
+; System
+; execute XT
+VE_EXECUTE:
+ .dw $ff07
+ .db "execute",0
+ .dw VE_HEAD
+ .set VE_HEAD = VE_EXECUTE
+XT_EXECUTE:
+ .dw PFA_EXECUTE
+PFA_EXECUTE:
+ movw wl, tosl
+ loadtos
+ jmp_ DO_EXECUTE