作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有以下代码,我试图在其中显示,但我的调试器 (AFD) 继续调试但不显示任何内容。
[org 0x100]
mov ax, 0xb800
mov es, ax
mov di, 0
nextchar: mov word [es:di], 0x0720
add di, 2
cmp di, 40
jne nextchar
mov ax,0x0003 ; 80x25 text mode, 16 colors
int 0x10
最佳答案
通过在退出前等待键盘按键,给自己一个机会来实际查看输出的内容:
[org 0x100]
mov ax, 0xb800
mov es, ax
mov di, 0
nextchar:
mov word [es:di], 0x0741 ; Will show 20x "A"
add di, 2
cmp di, 40
jne nextchar
mov ah,0x00
int 0x16 ; Wait for a key
mov ax,0x0003 ; 80x25 text mode, 16 colors
int 0x10
关于windows - 如何在DOS下显示汇编中的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33781592/
我是一名优秀的程序员,十分优秀!