aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/avr8/words/dup.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/avr8/words/dup.asm')
-rw-r--r--amforth-6.5/avr8/words/dup.asm13
1 files changed, 0 insertions, 13 deletions
diff --git a/amforth-6.5/avr8/words/dup.asm b/amforth-6.5/avr8/words/dup.asm
deleted file mode 100644
index 0b5fa27..0000000
--- a/amforth-6.5/avr8/words/dup.asm
+++ /dev/null
@@ -1,13 +0,0 @@
-; ( n -- n n )
-; Stack
-; duplicate TOS
-VE_DUP:
- .dw $ff03
- .db "dup",0
- .dw VE_HEAD
- .set VE_HEAD = VE_DUP
-XT_DUP:
- .dw PFA_DUP
-PFA_DUP:
- savetos
- jmp_ DO_NEXT