aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/sharp-greater.asm
blob: 914aba29853ce0d628d9c66a6c945d7e070779e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
; ( d1 -- addr count ) 
; Numeric IO
; Pictured Numeric Output: convert PNO buffer into an string

.if cpu_msp430==1
    HEADER(XT_SHARP_G,2,"#>",DOCOLON)
.endif

.if cpu_avr8==1
VE_SHARP_G:
    .dw $ff02
    .db "#>"
    .dw VE_HEAD
    .set VE_HEAD = VE_SHARP_G
XT_SHARP_G:
    .dw DO_COLON
PFA_SHARP_G:
.endif
    .dw XT_2DROP
    .dw XT_HLD
    .dw XT_FETCH
    .dw XT_PAD
    .dw XT_OVER
    .dw XT_MINUS
    .dw XT_EXIT