aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/backslash.asm
blob: 5364b9f364f98bb1b39dcffe5ced3d6f7f079dbb (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
30
; ( "ccc<eol>" -- ) 
; Compiler
; everything up to the end of the current line is a comment

.if cpu_msp430==1
;    HEADER(XT_BACKSLASH,1,'\',DOCOLON)
        DW      link
        DB      0FEh       ; immediate
.set link = $
        DB      1,5ch
        .align 16
XT_BACKSLASH: 
	.DW      DOCOLON
.endif

.if cpu_avr8==1
VE_BACKSLASH:
    .dw $0001
    .db $5c,0
    .dw VE_HEAD
    .set VE_HEAD = VE_BACKSLASH
XT_BACKSLASH:
    .dw DO_COLON
PFA_BACKSLASH:
.endif
    .dw XT_SOURCE
    .dw XT_NIP
    .dw XT_TO_IN
    .dw XT_STORE
    .dw XT_EXIT