美文网首页
引导程序之移动光标

引导程序之移动光标

作者: louyang | 来源:发表于2020-06-07 17:16 被阅读0次

https://www.jianshu.com/writer#/notebooks/19149135/notes/70675153
在这里我们知道在屏幕左上角,坐标位置(0,0)显示一个字符,下面我们换一个位置来显示。

boot.s

lobal init
init:
  mov $0x2, %ah    
  xor %bh, %bh     
  mov $0x8, %dh    
  mov $0x8, %dl    
  int $0x10 

  mov $0x0e, %ah
  mov $0x41, %al
  int $0x10
  jmp .
.=510
.byte 0x55
.byte 0xaa

image.png

相关文章

网友评论

      本文标题:引导程序之移动光标

      本文链接:https://www.haomeiwen.com/subject/bowctktx.html