mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
simple boot sector
This commit is contained in:
parent
0d537e1604
commit
9eea535b18
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/*/*.bin
|
6
01-boot-sector/boot_sect_simple.asm
Normal file
6
01-boot-sector/boot_sect_simple.asm
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
; A simple boot sector program that loops forever
|
||||||
|
loop:
|
||||||
|
jmp loop
|
||||||
|
|
||||||
|
times 510-($-$$) db 0
|
||||||
|
dw 0xaa55
|
Loading…
Reference in New Issue
Block a user