Download this file
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
; ; Spell selection blank line drawer ; - support code ; ; Written in TASM 3.0.1 ; #define LINE_SIZE (7+2)*2 ; width of line .org $35c5 ; $35c5-35d2 push de ld de,LINE_SIZE ; menu size ld a,b ; init inc a call $3494 ; 16-bit addition ld de,$0000 ; auto-generated base value add hl,de pop de .end ; TASM-only