Please enable JavaScript in your browser!
首頁
探索
說明
登入
liberatehongkong
/
x86-bare-metal-examples
镜像来自
https://github.com/cirosantilli/x86-bare-metal-examples.git
關註
1
讚好
0
複刻
0
Files
問題管理
0
Wiki
分支:
master
分支列表
標籤列表
adoc
antekone-baremetal_helloworld
common-o
master
md
x86-bare-met...
/
nasm
/
bios_one_char.asm
bios_one_char.asm
85 B
永久連結
文件歷史
原始文件
1
2
3
4
5
6
7
8
9
org 0x7c00
bits 16
cli
mov ax, 0x0E61
int 0x10
hlt
times 510 - ($-$$) db 0
dw 0xaa55