08-05-2022, 03:19 AM
Ok, I found the issue (should have been obvious but I'm not proficient in assembly)
Where the code is
ld hl,(.LABEL._art)
It must be
ld hl,.LABEL._art
Otherwise its loading hl with the value at the address rather than the address itself
Thanks
Where the code is
ld hl,(.LABEL._art)
It must be
ld hl,.LABEL._art
Otherwise its loading hl with the value at the address rather than the address itself
Thanks