Assembler TASM I8086

Hi. I need some help with an assembler program.
How can I make to display AH content?
Thanks
you should call a build in/library function. If you're in windows, just call printf with the correct arguments: (do not forget to include the necessary files)

1
2
3
push eax; ah //first the last parameters
push formatstring //could be "%u"
call printf


In real mode, from bios read http://en.wikipedia.org/wiki/INT_10H.
With DOS: http://spike.scu.edu.au/~barry/interrupts.html#ah02
Topic archived. No new replies allowed.