aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/dot.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/common/words/dot.asm')
-rw-r--r--amforth-6.5/common/words/dot.asm24
1 files changed, 24 insertions, 0 deletions
diff --git a/amforth-6.5/common/words/dot.asm b/amforth-6.5/common/words/dot.asm
new file mode 100644
index 0000000..32ad95f
--- /dev/null
+++ b/amforth-6.5/common/words/dot.asm
@@ -0,0 +1,24 @@
+; ( n -- )
+; Numeric IO
+; singed PNO with single cell numbers
+
+.if cpu_msp430==1
+ HEADER(XT_DOT,1,".",DOCOLON)
+.endif
+
+.if cpu_avr8==1
+
+
+VE_DOT:
+ .dw $ff01
+ .db ".",0
+ .dw VE_HEAD
+ .set VE_HEAD = VE_DOT
+XT_DOT:
+ .dw DO_COLON
+PFA_DOT:
+.endif
+ .dw XT_S2D
+ .dw XT_DDOT
+ .dw XT_EXIT
+; : . ( s -- ) s>d d. ;