- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码片段,它应该从 (30, 100) 开始绘制一条对角线,但是,它只是在屏幕顶部绘制一条水平线,如下所示:
为了测试代码,我运行 make run
。
这是loader.asm
:
BITS 16
; ----------------------------------------------------------------------
_start:
mov ax, 07C0h
add ax, 288
mov ss, ax ; ss = stack space
mov sp, 4096 ; sp = stack pointer
mov ax, 07C0h
mov ds, ax ; ds = data segment
call print_pixel
jmp $ ; infinite loop
; ----------------------------------------------------------------------
print_pixel:
; changing video mode to graphical
mov ah, 00h ; set video mode
mov al, 13h ; 13h - graphical mode.
; 40x25. 256 colors.;320x200 pixels. 1 page.
int 10h ; call
; drawing random pixels
mov ah, 0Ch ; change color for a single pixel
mov al, 0000b ; color
mov bh, 0 ; page number
mov cx, 30 ; x
mov dx, 100 ; y
int 10h ; paint 1st pixel
.repeat:
inc al ; change color
inc cx ; go one pixel right
inc dx ; go one pixel down
int 10h ; paint
cmp al, 1111b
je .done ; last color was painted
jmp .repeat
.done:
ret
times 510 - ($ - $$) db 0 ; padding with 0 at the end
dw 0xAA55 ; PC boot signature
这是Makefile
:
.PHONY: build run
build: image.flp
run: build
qemu-system-i386 -fda image.flp
image.bin: loader.asm
nasm -f bin -o image.bin loader.asm
image.flp: image.bin
dd status=noxfer conv=notrunc if=image.bin of=image.flp
最佳答案
您似乎偶然发现了 QEMU 在我们的 Ubuntu 版本上使用的默认 Plex86 VGA BIOS 的错误。这可能是 Plex86 VGA 代码中的一个错误; SeaBIOS 和 Plex86 之间的错误; Ubuntu/Debian 团队用于构建该 BIOS 的选项可能存在一些问题。您可以尝试使用Cirrus VGA BIOS,方法是修改Makefile
,以使此行:
qemu-system-i386 -fda image.flp
更改为:
qemu-system-i386 -fda image.flp -vga cirrus
我碰巧在 Ubuntu 15.04 上运行了你的代码并且有类似的行为。看来 DX 寄存器的内容不被接受(其中包含 Y 轴值)。
虽然在这种情况下不是您的问题的一部分 - 当使用 int 10h
时,您不应该假定 AX/AH/AL 寄存器将被保留。有些较旧的 VGA BIOS 可能会破坏它。
我还发现,在我的 Debian Jessie 系统上,您的代码最初可以工作,但如果我通过运行以下命令专门使用 Plex86 VGA BIOS,它就会失败:
qemu-system-i386 -fda image.flp -vga std
看来这个问题并非 Ubuntu 特有。它也影响 Debian。当没有指定时,Debian 似乎可能默认使用不同的 VGA BIOS。
关于assembly - 无法在 INT 10h/AH = 0Ch 的情况下在 Y 轴上绘制像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32932518/
package practicejava; public class Query { public static void main(String[] args) { char
因为我很困惑其中会存储什么。它是 ascii 值还是“z”,因为有些网站说它存储 ascii,有些网站说它存储“z”。链接说答案是“z”:http://cprogrammingworld4u.blog
这个问题在这里已经有了答案: mysql_fetch_array()/mysql_fetch_assoc()/mysql_fetch_row()/mysql_num_rows etc... expec
我无法将字符指针数组 s 的字符存储到字符数组 ch 中: int main() { char *s; s = malloc(1024 * sizeof(char));
我有这个代码: int main() { char ch[15]; cout<
在看《C++ Primer Plus 5th edition》时,看到了这样一段代码: cin.get(ch); ++ch; cout void print_type(cha
这行代码做了什么? char_to_ix = { ch:i for i,ch in enumerate(sorted(chars)) } ch:i 是什么意思? 最佳答案 这是@han solo 中提
这行代码做了什么? char_to_ix = { ch:i for i,ch in enumerate(sorted(chars)) } ch:i 是什么意思? 最佳答案 这是@han solo 中提
我在关注《C Primer Plus》这本书,遇到这样一段代码: // echo_eof.c -- repeats input to end of file. #include int main(v
这个问题在这里已经有了答案: Difference between int* a and int *a [duplicate] (2 个答案) Why is the asterisk before
我正在运行单个 goroutine 来处理与某些用户相关的消息 channel 。处理消息后,用户状态由 goroutine 更新并存储在数据库中。当对数据库的请求正在进行时,可以将许多消息发送到 c
这是完整的代码: s = 'life is short, stunt it!!?' from string import punctuation tbl = str.maketrans({ord(ch
在 C++ 中,(int) ch 是否等同于 int(ch)。 如果不是,有什么区别? 最佳答案 它们是同一个东西,也和(int)(ch)一样.在 C++ 中,通常首选使用命名转换来阐明您的意图: 使
我在 php 中使用 cURL。注意到每次启动 curl 案例时,人们总是把: $ch=curl_init(); “$ch”是什么意思? curl -F template_invoke_name='s
我正在编写与对齐相关的代码,如果给定的指针正确对齐,却没有标准的功能测试,这让我感到非常惊讶。 似乎互联网上的大多数代码都使用(long)ptr或 reinterpret_cast(ptr)测试对齐,
这个问题已经有答案了: C skipping one command of a function? [duplicate] (2 个回答) 已关闭 5 年前。 scanf("%c", &ch ) sc
然后我遇到了系统调用“write”,我尝试将“putchar”与“write”进行比较。现在,我对上面的代码行感到困惑。 最佳答案 putchar 是一个库函数。它调用 write 系统调用将字符写入
在 codechef 上用于更快输入输出的许多解决方案中,我遇到过这个表达式,但我无法理解它,因为我没有很多经验。 inline int scan( ) { int n=0; int ch=getch
这个问题在这里已经有了答案: What does space in scanf mean? [duplicate] (6 个答案) 关闭 7 年前。 像这样在scanf中加一个空格的目的是什么 sc
我的 spring-boot 应用程序中有以下 logback.xml: ... ...
我是一名优秀的程序员,十分优秀!