asm更改cmd背景颜色

发布于 2024-12-21 17:03:56 字数 563 浏览 2 评论 0原文

我编写了更改文本颜色的部分,但我找不到更改背景颜色的方法,此代码用于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汐鸠 2024-12-28 17:03:56

在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 of mov bh, 4h. It should start writing red on blue instead of red on black.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文