浏览代码

simple boot sector

Carlos Fenollosa 10 年之前
父节点
当前提交
9eea535b18
共有 2 个文件被更改,包括 7 次插入0 次删除
  1. 1 0
      .gitignore
  2. 6 0
      01-boot-sector/boot_sect_simple.asm

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+/*/*.bin

+ 6 - 0
01-boot-sector/boot_sect_simple.asm

@@ -0,0 +1,6 @@
+; A simple boot sector program that loops forever
+loop:
+    jmp loop
+
+times 510-($-$$) db 0
+dw 0xaa55