zasm: can now assemble zasm/expr.asm!

This commit is contained in:
Virgil Dupras 2019-05-19 10:45:11 -04:00
parent 6cbce0533a
commit 78d9764005
2 changed files with 2 additions and 4 deletions

View File

@ -53,7 +53,7 @@ _resolveLeftAndRight:
; Now we have parsed everything to the left and we have its result in ; Now we have parsed everything to the left and we have its result in
; IX. What we need to do now is the same thing on (DE) and then apply ; IX. What we need to do now is the same thing on (DE) and then apply
; the + operator. Let's save IX somewhere and parse this. ; the + operator. Let's save IX somewhere and parse this.
ex hl, de ; right expr now in HL ex de, hl ; right expr now in HL
push ix push ix
pop de ; numeric left expr result in DE pop de ; numeric left expr result in DE
jp parseExpr jp parseExpr

View File

@ -25,6 +25,7 @@
.equ DIREC_RAMSTART TOK_RAMEND .equ DIREC_RAMSTART TOK_RAMEND
#include "zasm/directive.asm" #include "zasm/directive.asm"
#include "zasm/instr.asm" #include "zasm/instr.asm"
#include "zasm/expr.asm"
zasmIsFirstPass: zasmIsFirstPass:
nop nop
@ -32,6 +33,3 @@ zasmIsFirstPass:
zasmIsLocalPass: zasmIsLocalPass:
nop nop
parseExpr:
nop