aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/create.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/common/words/create.asm')
-rw-r--r--amforth-6.5/common/words/create.asm23
1 files changed, 0 insertions, 23 deletions
diff --git a/amforth-6.5/common/words/create.asm b/amforth-6.5/common/words/create.asm
deleted file mode 100644
index b288474..0000000
--- a/amforth-6.5/common/words/create.asm
+++ /dev/null
@@ -1,23 +0,0 @@
-; ( -- a-addr ) (C: "<spaces>name" -- )
-; Dictionary
-; create a dictionary header. XT is (constant), with the address of the data field of name
-
-.if cpu_msp430==1
- HEADER(XT_CREATE,6,"create",DOCOLON)
-.endif
-
-.if cpu_avr8==1
-VE_CREATE:
- .dw $ff06
- .db "create"
- .dw VE_HEAD
- .set VE_HEAD = VE_CREATE
-XT_CREATE:
- .dw DO_COLON
-PFA_CREATE:
-.endif
- .dw XT_DOCREATE
- .dw XT_REVEAL
- .dw XT_COMPILE
- .dw PFA_DOCONSTANT
- .dw XT_EXIT