aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/2dup.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/common/words/2dup.asm')
-rw-r--r--amforth-6.5/common/words/2dup.asm22
1 files changed, 0 insertions, 22 deletions
diff --git a/amforth-6.5/common/words/2dup.asm b/amforth-6.5/common/words/2dup.asm
deleted file mode 100644
index 258c4f9..0000000
--- a/amforth-6.5/common/words/2dup.asm
+++ /dev/null
@@ -1,22 +0,0 @@
-; ( x1 x2 -- x1 x2 x1 x2 )
-; Stack
-; Duplicate the 2 top elements
-
-.if cpu_msp430==1
- HEADER(XT_2DUP,4,"2dup",DOCOLON)
-.endif
-
-.if cpu_avr8==1
-VE_2DUP:
- .dw $ff04
- .db "2dup"
- .dw VE_HEAD
- .set VE_HEAD = VE_2DUP
-XT_2DUP:
- .dw DO_COLON
-PFA_2DUP:
-.endif
-
- .dw XT_OVER
- .dw XT_OVER
- .dw XT_EXIT