2019-05-09 14:09:40 -04:00
|
|
|
; *** Requirements ***
|
2019-05-09 15:36:03 -04:00
|
|
|
; blockdev
|
2019-05-09 14:09:40 -04:00
|
|
|
; JUMP_STRNCMP
|
|
|
|
; JUMP_ADDDE
|
|
|
|
; JUMP_UPCASE
|
|
|
|
; JUMP_UNSETZ
|
|
|
|
; JUMP_INTODE
|
2019-04-30 15:51:39 -04:00
|
|
|
|
|
|
|
; *** Code ***
|
2019-05-09 15:36:03 -04:00
|
|
|
; Read file through GetC routine pointer at HL and outputs its upcodes through
|
|
|
|
; the PutC routine pointer at DE.
|
2019-04-30 15:51:39 -04:00
|
|
|
main:
|
2019-05-09 15:36:03 -04:00
|
|
|
ld (ioGetCPtr), hl
|
|
|
|
ld (ioPutCPtr), de
|
2019-04-30 15:51:39 -04:00
|
|
|
.loop:
|
2019-05-09 15:36:03 -04:00
|
|
|
call ioReadLine
|
|
|
|
or a ; is A 0?
|
|
|
|
jr z, .stop ; We have EOF
|
2019-04-30 15:51:39 -04:00
|
|
|
call parseLine
|
2019-05-01 10:16:57 -04:00
|
|
|
jr nz, .stop
|
2019-04-30 15:51:39 -04:00
|
|
|
jr .loop
|
|
|
|
.stop:
|
|
|
|
ret
|
|
|
|
|
2019-04-30 21:40:22 -04:00
|
|
|
#include "util.asm"
|
2019-05-09 15:36:03 -04:00
|
|
|
#include "io.asm"
|
2019-05-01 14:19:43 -04:00
|
|
|
#include "parse.asm"
|
2019-05-01 11:26:41 -04:00
|
|
|
#include "literal.asm"
|
2019-04-30 21:40:22 -04:00
|
|
|
#include "instr.asm"
|
|
|
|
#include "directive.asm"
|
|
|
|
|
2019-04-30 15:51:39 -04:00
|
|
|
; Parse line in (HL), write the resulting opcode(s) in (DE) and returns the
|
2019-05-01 10:16:57 -04:00
|
|
|
; number of written bytes in IXL. Advances HL where tokenization stopped and DE
|
2019-04-30 15:51:39 -04:00
|
|
|
; to where we should write the next upcode.
|
2019-05-01 10:16:57 -04:00
|
|
|
; Sets Z if parse was successful, unset if there was an error or EOF.
|
2019-04-30 15:51:39 -04:00
|
|
|
parseLine:
|
|
|
|
push bc
|
2019-04-30 17:04:42 -04:00
|
|
|
|
2019-04-30 15:51:39 -04:00
|
|
|
call tokenize
|
2019-04-30 22:27:11 -04:00
|
|
|
ld a, b ; TOK_*
|
2019-04-30 21:40:22 -04:00
|
|
|
cp TOK_INSTR
|
|
|
|
jr z, .instr
|
2019-05-01 11:26:41 -04:00
|
|
|
cp TOK_DIRECTIVE
|
|
|
|
jr z, .direc
|
2019-05-09 15:36:03 -04:00
|
|
|
cp TOK_EMPTY
|
|
|
|
jr z, .success ; empty line? do nothing but don't error out.
|
2019-05-01 11:26:41 -04:00
|
|
|
jr .error ; token not supported
|
2019-04-30 21:40:22 -04:00
|
|
|
.instr:
|
2019-04-30 22:27:11 -04:00
|
|
|
ld a, c ; I_*
|
2019-04-30 21:40:22 -04:00
|
|
|
call parseInstruction
|
2019-04-30 15:51:39 -04:00
|
|
|
or a ; is zero?
|
|
|
|
jr z, .error
|
2019-05-09 15:36:03 -04:00
|
|
|
ld b, a
|
2019-05-01 11:26:41 -04:00
|
|
|
ld hl, instrUpcode
|
2019-05-09 15:36:03 -04:00
|
|
|
.loopInstr:
|
|
|
|
ld a, (hl)
|
|
|
|
call ioPutC
|
|
|
|
inc hl
|
|
|
|
djnz .loopInstr
|
2019-05-01 11:26:41 -04:00
|
|
|
jr .success
|
|
|
|
.direc:
|
|
|
|
ld a, c ; D_*
|
|
|
|
call parseDirective
|
2019-05-09 15:36:03 -04:00
|
|
|
ld b, a
|
2019-05-01 11:26:41 -04:00
|
|
|
ld hl, direcData
|
2019-05-09 15:36:03 -04:00
|
|
|
.loopDirec:
|
|
|
|
ld a, (hl)
|
|
|
|
call ioPutC
|
|
|
|
inc hl
|
|
|
|
djnz .loopDirec
|
2019-05-01 10:16:57 -04:00
|
|
|
jr .success
|
|
|
|
.success:
|
|
|
|
ld ixl, a
|
|
|
|
xor a ; ensure Z
|
2019-04-30 15:51:39 -04:00
|
|
|
jr .end
|
|
|
|
.error:
|
2019-05-01 10:16:57 -04:00
|
|
|
xor ixl
|
|
|
|
call JUMP_UNSETZ
|
2019-04-30 15:51:39 -04:00
|
|
|
.end:
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|