Skip to content
Advertisement

Assembly NASM x86 – Simple Stack Project

I’m writing a subroutine to simply reprint decimal numbers as strings using the stack, but not getting the values I expected. When I run it through the debugger I see that I can’t get the value from esi into al. I suspect that I’m not allowed to use esi in the manner that I am, but I’m not sure on another way I can do this. Also, I am not allowed to push the elements I’m storing in edx onto the stack.

Subroutine code:

JavaScript

Driver:

JavaScript

Advertisement

Answer

Fixes I had on mind (asterisk denotes lines I did touch), hopefully it will be clear from comments what I did:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement