我正在创建我的第一个 x86 汇编程序。我使用 VS Code 作为我的编辑器,并使用 Insight 作为我的调试器,并使用 DOSBox 作为我的模拟器。
首先,我创建了一个.asm
程序来更改屏幕的颜色:
global _start
section .text
_start:
call set_colour
ret 16
set_colour:
mov ah, 06h ; scroll up function
xor al, al ; clear entire screen
xor cx, cx ; upper left corner
mov dx, 184fh ; lower right corner
mov bh, 1eh ; yellow on blue
int 10h
ret
当我尝试将此.asm
文件转换为.o
文件时,DOSBox 返回一个错误,指出它无法加载该文件。我究竟做错了什么?