asm更改cmd背景颜色
我编写了更改文本颜色的部分,但我找不到更改背景颜色的方法,此代码用于 tasm 程序集:
model small
stack 256
.data
ent db 0ah,0dh,'$'
array db 2,4,5,6
db 7,8,9,5
db 1,2,3,4
db 5,6,7,8
temp dw 0
.code
main :
mov ax,@data
mov ds,ax
mov ah, 06h
mov al, 0
mov cx, 0
mov dh, 79
mov dl, 79
mov bh, 4h
int 10h
这是我的代码,但它不起作用:
mov ah, 0bh
mov bh, 01h
mov bl, 2h
int 10h
mov ah, 02h
mov dl, 34h
int 21h
mov ax,4c00h ; exit from program
int 21h
end main
I wrote the part that changes the text color, but I can't find a way to change the background color, this code is for tasm assembly:
model small
stack 256
.data
ent db 0ah,0dh,'
This is a my code but it doesn't work:
mov ah, 0bh
mov bh, 01h
mov bl, 2h
int 10h
mov ah, 02h
mov dl, 34h
int 21h
mov ax,4c00h ; exit from program
int 21h
end main
array db 2,4,5,6
db 7,8,9,5
db 1,2,3,4
db 5,6,7,8
temp dw 0
.code
main :
mov ax,@data
mov ds,ax
mov ah, 06h
mov al, 0
mov cx, 0
mov dh, 79
mov dl, 79
mov bh, 4h
int 10h
This is a my code but it doesn't work:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在BIOS功能6中,BH包含8位颜色。其低 4 位指定前景色,而高 4 位指定背景色。例如,尝试使用
mov bh, 14h
而不是mov bh, 4h
。它应该开始在蓝色上写红色,而不是在黑色上写红色。In BIOS function 6, BH contains an 8-bit color. Its lower 4 bits specify the foreground color while the upper 4 bits specify the background color. Try, for example,
mov bh, 14h
instead ofmov bh, 4h
. It should start writing red on blue instead of red on black.