我想用视频模式运行一个简单的代码,但我无法运行我的程序:
section .text
global _start
_start:
xor ah, ah
mov al,12h
int 10h
;and exit
mov eax,1 ;system call number (sys_exit)
xor ebx,ebx ;first syscall argument: exit code
int 0x80 ;call kernel
错误消息是Segmentation fault ..