06-03-2010, 05:41 PM
Not sure why the .asm ends up this way, but each time it pulls a parameter in a sub or function it seems to do this:
Why stack the HL register before loading the A register each time, and then unstack it immediately afterwards?
Code:
push hl
ld a, (ix+11)
pop hl
Why stack the HL register before loading the A register each time, and then unstack it immediately afterwards?