aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/compile.asm
blob: 524cee6d06714f04855a8565cea9431a4186e0f4 (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
; ( -- ) 
; Dictionary
; read the following cell from the dictionary and append it to the current dictionary position.

.if cpu_msp430==1
    HEADER(XT_COMPILE,7,"compile",DOCOLON)
.endif

.if cpu_avr8==1
VE_COMPILE:
    .dw $ff07
    .db "compile",0
    .dw  VE_HEAD
    .set VE_HEAD = VE_COMPILE
XT_COMPILE:
    .dw DO_COLON
PFA_COMPILE:
.endif
    .dw XT_R_FROM
    .dw XT_DUP
    .dw XT_ICELLPLUS
    .dw XT_TO_R
    .dw XT_FETCHI
    .dw XT_COMMA
    .dw XT_EXIT