mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2025-12-17 20:34:36 +03:00
simple boot sector
This commit is contained in:
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
|
||||||
Reference in New Issue
Block a user