collapseos/apps/zasm/main.asm

83 lines
1.4 KiB
NASM
Raw Normal View History

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