VolksForth/8086/msdos/src/t86asm.fth
Philip Zembrod f3376268f8 Make v4th.com tests independent of .fb sources:
Provide .fth variants of asm.fb, extend.fb, dos.fb, multi.vid
Also add detection of unresolved symbols to v4th.com make rule
2022-03-21 00:50:22 +01:00

15 lines
367 B
Forth

\ *** Block No. 2, Hexblock 2
\ conditional Assembler compiler cas 10nov05
here
: maybe-include-tmp-asm ( addr -- ) hide last off dp !
" ASSEMBLER" find nip ?exit here $1800 + sp@ u>
IF display cr ." Assembler won't fit" abort THEN
here sp@ $1800 - dp !
include
dp ! ;
maybe-include-tmp-asm 86asm.fth