只是想知道,在關於我的帖子替代內置宏,是有可能避免使用的StdOut宏觀使用INT 21H窗口API?如:x86程序集(masm32) - 我可以在Windows XP上使用int 21h來打印東西嗎?
.data
msg dd 'This will be displayed'
;original macro usage:
invoke StdOut, addr msg
;what I want to know will work
push msg
int 21h ; If this does what I think it does, it should print msg
難道這樣的事情存在(如在使用INT 21H打印的東西),或不類似的東西存在,但不完全詮釋21H。或者我完全錯了。
有人能爲我澄清這一點嗎?
感謝,
Progrmr
21H ...哎人,別告訴我你的眼睛是幹... –
它看起來像一個[類似的問題] [1]已經可以 [1]:HTTP:/ /stackoverflow.com/questions/1245809/what-is-int-21h – mox