aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/words/words.asm
blob: a6f345e75f1187d44feab584922452a1b442c1cb (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
; ( -- ) 
; Tools
; prints a list of all (visible) words in the dictionary

.if cpu_msp430==1
    HEADER(XT_WORDS,5,"words",DOCOLON)
.endif

.if cpu_avr8==1


VE_WORDS:
    .dw $ff05
    .db "words",0
    .dw VE_HEAD
    .set VE_HEAD = VE_WORDS
XT_WORDS:
    .dw DO_COLON
PFA_WORDS:
.endif
    .dw XT_DOLITERAL
    .dw CFG_ORDERLISTLEN+2
    .dw XT_FETCHE
    .dw XT_SHOWWORDLIST
    .dw XT_EXIT