Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在汇编语言中得到类似 EEEEEEEEEEEEEEEEEEEEEE$EEEEEEEEEEEEEEEEEEEEEEEEEE$ 的输出,并且只输出 $ 本身。
假设您的目标是 MS-DOS,请使用中断 21H,函数 AH=2 - 单字符输出。将 $ 符号的 ASCII 代码(即 24 小时)放入 DL。
mov ah, 2 mov dl, 24h int 21h
$ 仅对函数 AH=9 重要,即输出字符串的函数。这个输出一个字符,$ 对它没有特殊含义。
为了输出可能包含嵌入 $ 的整个字符串,请滚动您自己的循环。