aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/avr8/words/up.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/avr8/words/up.asm')
-rw-r--r--amforth-6.5/avr8/words/up.asm29
1 files changed, 0 insertions, 29 deletions
diff --git a/amforth-6.5/avr8/words/up.asm b/amforth-6.5/avr8/words/up.asm
deleted file mode 100644
index 0edfc01..0000000
--- a/amforth-6.5/avr8/words/up.asm
+++ /dev/null
@@ -1,29 +0,0 @@
-; ( -- addr )
-; System Variable
-; get user area pointer
-VE_UP_FETCH:
- .dw $ff03
- .db "up@",0
- .dw VE_HEAD
- .set VE_HEAD = VE_UP_FETCH
-XT_UP_FETCH:
- .dw PFA_UP_FETCH
-PFA_UP_FETCH:
- savetos
- movw tosl, upl
- jmp_ DO_NEXT
-
-; ( addr -- )
-; System Variable
-; set user area pointer
-VE_UP_STORE:
- .dw $ff03
- .db "up!",0
- .dw VE_HEAD
- .set VE_HEAD = VE_UP_STORE
-XT_UP_STORE:
- .dw PFA_UP_STORE
-PFA_UP_STORE:
- movw upl, tosl
- loadtos
- jmp_ DO_NEXT