aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/interpret.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/common/words/interpret.asm')
-rw-r--r--amforth-6.5/common/words/interpret.asm38
1 files changed, 0 insertions, 38 deletions
diff --git a/amforth-6.5/common/words/interpret.asm b/amforth-6.5/common/words/interpret.asm
deleted file mode 100644
index 37489ae..0000000
--- a/amforth-6.5/common/words/interpret.asm
+++ /dev/null
@@ -1,38 +0,0 @@
-; (i*x - j*x )
-; System
-; Interpret SOURCE word by word.
-
-.if cpu_msp430==1
- HEADER(XT_INTERPRET,9,"interpret",DOCOLON)
-.endif
-
-.if cpu_avr8==1
-VE_INTERPRET:
- .dw $ff09
- .db "interpret",0
- .dw VE_HEAD
- .set VE_HEAD = VE_INTERPRET
-XT_INTERPRET:
- .dw DO_COLON
-.endif
-PFA_INTERPRET:
- .dw XT_PARSENAME ; ( -- addr len )
- .dw XT_DUP ; ( -- addr len flag)
- .dw XT_DOCONDBRANCH
- DEST(PFA_INTERPRET2)
- .dw XT_FORTHRECOGNIZER
- .dw XT_RECOGNIZE
- .dw XT_STATE
- .dw XT_FETCH
- .dw XT_DOCONDBRANCH
- DEST(PFA_INTERPRET1)
- .dw XT_ICELLPLUS ; we need the compile action
-PFA_INTERPRET1:
- .dw XT_FETCHI
- .dw XT_EXECUTE
- .dw XT_QSTACK
- .dw XT_DOBRANCH
- DEST(PFA_INTERPRET)
-PFA_INTERPRET2:
- .dw XT_2DROP
- .dw XT_EXIT