You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test equ 0
org 100h
ld de,msg1
ld c,9
call 5
jp 0
if test
msg1 db 'Hello Test$'
else
msg1 db 'Hello World$'
endif
The assembler complain about double label msg1 but shouldn't.
This fix works for me:
In Z80Assembler.java method parseLine (line #672)
replace if( labelName != null ) {
with if( labelName != null && isAssemblingEnabled()) {
The text was updated successfully, but these errors were encountered:
Example
The assembler complain about double label msg1 but shouldn't.
This fix works for me:
In
Z80Assembler.java
methodparseLine
(line #672)replace
if( labelName != null ) {
with
if( labelName != null && isAssemblingEnabled()) {
The text was updated successfully, but these errors were encountered: