masm-tasm
masm-tasm copied to clipboard
How to view the console output in the debug window?
Nice tool for learning assembly!
I cannot find where the console output (from INT 21H
) is shown in TASM/MASM debug window. How can I check the console output while debugging? Thanks!
It will not show on debug window now. Currently, this extension call dosbox and do nothing else.
Can you describe more in details? I may do this
It will not show on debug window now. Currently, this extension call dosbox and do nothing else.
Can you describe more in details? I may do this
Then it might be that TASM/MASM's debug tool didn't provide such a function. If you call printf in a debugger like gdb, the message sent to stdout will be shown. I was expecting the same from TASM/MASM.
In TASM's debug you can press ALT+F5 to view the console window, or you can do these steps: press F10-select 'Window'-select 'User screen'.
i think redirecting output to log file causes int 21h not to show text while debugging. so is there a way to edit debugging not to redirect output to log file?