2010-06-03, 06: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 hlWhy stack the HL register before loading the A register each time, and then unstack it immediately afterwards?


