aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/avr8/lib/forth2012/core-ext/avr-defers.frt
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/avr8/lib/forth2012/core-ext/avr-defers.frt')
-rw-r--r--amforth-6.5/avr8/lib/forth2012/core-ext/avr-defers.frt20
1 files changed, 0 insertions, 20 deletions
diff --git a/amforth-6.5/avr8/lib/forth2012/core-ext/avr-defers.frt b/amforth-6.5/avr8/lib/forth2012/core-ext/avr-defers.frt
deleted file mode 100644
index 0421ab3..0000000
--- a/amforth-6.5/avr8/lib/forth2012/core-ext/avr-defers.frt
+++ /dev/null
@@ -1,20 +0,0 @@
-\ the following code works in the AVR only
-
-\ use the eeprom to keep the XT. Unlike the RAM/USER
-\ based locations, the EEPROM vector is available without
-\ initialization.
-: Edefer ( "name" -- )
- (defer)
- ehere dup ,
- ['] Edefer@ ,
- ['] Edefer! ,
- cell+ to ehere
-;
-
-\ the flash is writable, not that often, but it is
-: Idefer ( "name" -- )
- (defer)
- ['] noop , \ a dummy action as place holder
- [: @i execute ;] , \ XT is directly in the dictionary.
- [: !i ;] ,
-;