aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/hold.asm
blob: dda538aeec84cd9fdf5e2610c169a76466c91a11 (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
26
27
28
29
; ( c -- ) 
; Numeric IO
; prepend character to pictured numeric output buffer

.if cpu_msp430==1
    HEADER(XT_HOLD,4,"hold",DOCOLON)
.endif

.if cpu_avr8==1
VE_HOLD:
    .dw $ff04
    .db "hold"
    .dw VE_HEAD
    .set VE_HEAD = VE_HOLD
XT_HOLD:
    .dw DO_COLON
PFA_HOLD:
.endif
    .dw XT_HLD
    .dw XT_DUP
    .dw XT_FETCH
    .dw XT_1MINUS
    .dw XT_DUP
    .dw XT_TO_R
    .dw XT_SWAP
    .dw XT_STORE
    .dw XT_R_FROM
    .dw XT_CSTORE
    .dw XT_EXIT