2019-05-11 10:32:05 +10:00
|
|
|
; zasm
|
|
|
|
;
|
|
|
|
; Reads input from specified blkdev ID, assemble the binary in two passes and
|
|
|
|
; spit the result in another specified blkdev ID.
|
|
|
|
;
|
|
|
|
; We don't buffer the whole source in memory, so we need our input blkdev to
|
|
|
|
; support Seek so we can read the file a second time. So, for input, we need
|
|
|
|
; GetC and Seek.
|
|
|
|
;
|
|
|
|
; For output, we only need PutC. Output doesn't start until the second pass.
|
|
|
|
;
|
|
|
|
; The goal of the second pass is to assign values to all symbols so that we
|
|
|
|
; can have forward references (instructions referencing a label that happens
|
|
|
|
; later).
|
|
|
|
;
|
|
|
|
; Labels and constants are both treated the same way, that is, they can be
|
|
|
|
; forward-referenced in instructions. ".equ" directives, however, are evaluated
|
|
|
|
; during the first pass so forward references are not allowed.
|
|
|
|
;
|
2019-05-10 04:09:40 +10:00
|
|
|
; *** Requirements ***
|
2019-05-10 05:36:03 +10:00
|
|
|
; blockdev
|
2019-05-10 04:09:40 +10:00
|
|
|
; JUMP_STRNCMP
|
|
|
|
; JUMP_ADDDE
|
2019-05-10 11:21:08 +10:00
|
|
|
; JUMP_ADDHL
|
2019-05-10 04:09:40 +10:00
|
|
|
; JUMP_UPCASE
|
|
|
|
; JUMP_UNSETZ
|
|
|
|
; JUMP_INTODE
|
2019-05-13 12:07:21 +10:00
|
|
|
; JUMP_INTOHL
|
2019-05-10 11:21:08 +10:00
|
|
|
; JUMP_FINDCHAR
|
2019-05-11 08:20:43 +10:00
|
|
|
; JUMP_BLKSEL
|
2019-05-10 11:21:08 +10:00
|
|
|
; RAMSTART (where we put our variables in RAM)
|
2019-05-01 05:51:39 +10:00
|
|
|
|
2019-05-11 10:32:05 +10:00
|
|
|
; *** Variables ***
|
|
|
|
|
|
|
|
; A bool flag indicating that we're on first pass. When we are, we don't care
|
|
|
|
; about actual output, but only about the length of each upcode. This means
|
|
|
|
; that when we parse instructions and directive that error out because of a
|
|
|
|
; missing symbol, we don't error out and just write down a dummy value.
|
|
|
|
.equ ZASM_FIRST_PASS RAMSTART
|
|
|
|
.equ ZASM_RAMEND ZASM_FIRST_PASS+1
|
|
|
|
|
|
|
|
; *** Code ***
|
|
|
|
jp zasmMain
|
|
|
|
|
2019-05-11 08:20:43 +10:00
|
|
|
#include "util.asm"
|
2019-05-11 10:32:05 +10:00
|
|
|
.equ IO_RAMSTART ZASM_RAMEND
|
2019-05-11 08:20:43 +10:00
|
|
|
#include "io.asm"
|
2019-05-11 11:19:34 +10:00
|
|
|
#include "tok.asm"
|
2019-05-11 08:20:43 +10:00
|
|
|
#include "parse.asm"
|
|
|
|
#include "instr.asm"
|
2019-05-12 12:11:05 +10:00
|
|
|
.equ DIREC_RAMSTART IO_RAMEND
|
2019-05-11 08:20:43 +10:00
|
|
|
#include "directive.asm"
|
2019-05-12 12:11:05 +10:00
|
|
|
.equ SYM_RAMSTART DIREC_RAMEND
|
2019-05-11 08:20:43 +10:00
|
|
|
#include "symbol.asm"
|
|
|
|
|
|
|
|
; Read file through blockdev ID in H and outputs its upcodes through blockdev
|
|
|
|
; ID in L.
|
2019-05-11 10:32:05 +10:00
|
|
|
zasmMain:
|
2019-05-14 10:23:10 +10:00
|
|
|
; Init I/O
|
2019-05-11 08:20:43 +10:00
|
|
|
ld a, h
|
|
|
|
ld de, IO_IN_GETC
|
|
|
|
call JUMP_BLKSEL
|
|
|
|
ld a, l
|
|
|
|
ld de, IO_OUT_GETC
|
|
|
|
call JUMP_BLKSEL
|
2019-05-14 10:23:10 +10:00
|
|
|
; Init modules
|
|
|
|
call symInit
|
|
|
|
|
2019-05-11 10:32:05 +10:00
|
|
|
; First pass
|
|
|
|
ld a, 1
|
|
|
|
ld (ZASM_FIRST_PASS), a
|
|
|
|
call zasmParseFile
|
2019-05-13 11:31:11 +10:00
|
|
|
ret nz
|
2019-05-11 10:32:05 +10:00
|
|
|
; Second pass
|
|
|
|
call ioRewind
|
|
|
|
xor a
|
|
|
|
ld (ZASM_FIRST_PASS), a
|
|
|
|
call zasmParseFile
|
|
|
|
ret
|
|
|
|
|
|
|
|
; Sets Z according to whether we're in first pass.
|
|
|
|
zasmIsFirstPass:
|
|
|
|
ld a, (ZASM_FIRST_PASS)
|
|
|
|
cp 1
|
2019-05-01 05:51:39 +10:00
|
|
|
ret
|
|
|
|
|
2019-05-10 11:21:08 +10:00
|
|
|
; Increase (curOutputOffset) by A
|
|
|
|
incOutputOffset:
|
|
|
|
push de
|
|
|
|
ld de, (curOutputOffset)
|
|
|
|
call JUMP_ADDDE
|
|
|
|
ld (curOutputOffset), de
|
|
|
|
pop de
|
|
|
|
ret
|
|
|
|
|
2019-05-13 11:44:59 +10:00
|
|
|
; Repeatedly reads lines from IO, assemble them and spit the binary code in
|
|
|
|
; IO. Z is set on success, unset on error. DE contains the last line number to
|
|
|
|
; be read (first line is 1).
|
2019-05-11 10:32:05 +10:00
|
|
|
zasmParseFile:
|
2019-05-13 11:44:59 +10:00
|
|
|
ld de, 0
|
|
|
|
ld (curOutputOffset), de
|
2019-05-11 10:32:05 +10:00
|
|
|
.loop:
|
2019-05-13 11:44:59 +10:00
|
|
|
inc de
|
2019-05-11 10:32:05 +10:00
|
|
|
call ioReadLine
|
|
|
|
or a ; is A 0?
|
|
|
|
ret z ; We have EOF
|
|
|
|
call parseLine
|
2019-05-13 11:31:11 +10:00
|
|
|
ret nz ; error
|
2019-05-11 10:32:05 +10:00
|
|
|
jr .loop
|
|
|
|
|
2019-05-15 04:10:20 +10:00
|
|
|
; Parse line in (HL), write the resulting opcode(s) through ioPutC and increases
|
|
|
|
; (curOutputOffset) by the number of bytes written.
|
2019-05-02 00:16:57 +10:00
|
|
|
; 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 07:04:42 +10:00
|
|
|
|
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
|
2019-05-10 11:21:08 +10:00
|
|
|
cp TOK_LABEL
|
|
|
|
jr z, .label
|
2019-05-10 05:36:03 +10:00
|
|
|
cp TOK_EMPTY
|
2019-05-15 04:32:12 +10:00
|
|
|
jr .end ; Z is correct. If empty, Z is set and not an
|
|
|
|
; error, otherwise, it means bad token and
|
|
|
|
; errors out.
|
2019-05-01 11:40:22 +10:00
|
|
|
.instr:
|
2019-05-15 04:32:12 +10:00
|
|
|
call _parseInstr
|
|
|
|
jr .end ; Z is correct
|
|
|
|
.direc:
|
|
|
|
call _parseDirec
|
|
|
|
jr .end ; Z is correct
|
|
|
|
.label:
|
2019-05-15 04:35:34 +10:00
|
|
|
push hl
|
2019-05-15 04:32:12 +10:00
|
|
|
call _parseLabel
|
2019-05-15 04:35:34 +10:00
|
|
|
pop hl
|
|
|
|
jr nz, .end ; error out
|
|
|
|
; We're finished here. However, because it's a label, it's possible that
|
|
|
|
; another logical line follows directly after the label. Let's parse
|
|
|
|
; this and propagate error.
|
|
|
|
call parseLine
|
2019-05-15 04:32:12 +10:00
|
|
|
; Continue to .end, Z has proper value
|
|
|
|
.end:
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|
|
|
|
_parseInstr:
|
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
|
2019-05-11 10:32:05 +10:00
|
|
|
ld b, a ; save output byte count
|
2019-05-10 11:21:08 +10:00
|
|
|
call incOutputOffset
|
2019-05-11 10:32:05 +10:00
|
|
|
call zasmIsFirstPass
|
|
|
|
jr z, .success ; first pass, nothing to write
|
2019-05-02 01:26:41 +10:00
|
|
|
ld hl, instrUpcode
|
2019-05-10 05:36:03 +10:00
|
|
|
.loopInstr:
|
|
|
|
ld a, (hl)
|
|
|
|
call ioPutC
|
|
|
|
inc hl
|
|
|
|
djnz .loopInstr
|
2019-05-15 04:32:12 +10:00
|
|
|
; continue to success
|
|
|
|
.success:
|
|
|
|
xor a ; ensure Z
|
|
|
|
ret
|
|
|
|
.error:
|
|
|
|
call JUMP_UNSETZ
|
|
|
|
ret
|
|
|
|
|
|
|
|
_parseDirec:
|
2019-05-02 01:26:41 +10:00
|
|
|
ld a, c ; D_*
|
|
|
|
call parseDirective
|
2019-05-12 12:11:05 +10:00
|
|
|
or a ; cp 0
|
|
|
|
jr z, .success ; if zero, shortcut through
|
2019-05-11 10:32:05 +10:00
|
|
|
ld b, a ; save output byte count
|
2019-05-10 11:21:08 +10:00
|
|
|
call incOutputOffset
|
2019-05-11 10:32:05 +10:00
|
|
|
call zasmIsFirstPass
|
|
|
|
jr z, .success ; first pass, nothing to write
|
2019-05-02 01:26:41 +10:00
|
|
|
ld hl, direcData
|
2019-05-10 05:36:03 +10:00
|
|
|
.loopDirec:
|
|
|
|
ld a, (hl)
|
|
|
|
call ioPutC
|
|
|
|
inc hl
|
|
|
|
djnz .loopDirec
|
2019-05-15 04:32:12 +10:00
|
|
|
; continue to success
|
|
|
|
.success:
|
|
|
|
xor a ; ensure Z
|
|
|
|
ret
|
|
|
|
|
|
|
|
_parseLabel:
|
2019-05-10 11:21:08 +10:00
|
|
|
; The string in (scratchpad) is a label with its trailing ':' removed.
|
2019-05-15 04:10:20 +10:00
|
|
|
ex hl, de ; save current HL (end of label) in DE,
|
|
|
|
; we will need it later
|
2019-05-10 11:21:08 +10:00
|
|
|
ld hl, scratchpad
|
2019-05-14 10:23:10 +10:00
|
|
|
call zasmIsFirstPass
|
|
|
|
jr z, .registerLabel ; When we encounter a label in the first
|
|
|
|
; pass, we register it in the symbol
|
|
|
|
; list
|
|
|
|
; When we're not in the first pass, we set the context (if label is not
|
|
|
|
; local) to that label.
|
|
|
|
call symIsLabelLocal
|
2019-05-15 04:35:34 +10:00
|
|
|
jr z, .success ; local? don't set context
|
2019-05-14 10:23:10 +10:00
|
|
|
call symSetContext
|
|
|
|
jr z, .success
|
2019-05-15 04:35:34 +10:00
|
|
|
; NZ? this means that (HL) couldn't be found in symbol list. Weird
|
2019-05-14 10:23:10 +10:00
|
|
|
jr .error
|
|
|
|
.registerLabel:
|
2019-05-10 11:21:08 +10:00
|
|
|
ld de, (curOutputOffset)
|
|
|
|
call symRegister
|
2019-05-14 10:23:10 +10:00
|
|
|
jr nz, .error
|
|
|
|
; continue to .success
|
2019-05-02 00:16:57 +10:00
|
|
|
.success:
|
|
|
|
xor a ; ensure Z
|
2019-05-15 04:32:12 +10:00
|
|
|
ret
|
2019-05-01 05:51:39 +10:00
|
|
|
.error:
|
2019-05-02 00:16:57 +10:00
|
|
|
call JUMP_UNSETZ
|
2019-05-01 05:51:39 +10:00
|
|
|
ret
|
|
|
|
|
2019-05-10 11:21:08 +10:00
|
|
|
; *** Variables ***
|
|
|
|
; The offset where we currently are with regards to outputting opcodes
|
|
|
|
curOutputOffset:
|
|
|
|
.fill 2
|