projects
/
eightysix
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
initial commit
[eightysix]
/
boot
/
boot2.asm
1
; second stage boot loader C startup
2
cpu 8086
3
bits 16
4
section .startup
5
6
extern bootmain
7
8
global _start
9
_start:
10
; TODO floppy off if necessary
11
; TODO zero .bss
12
call bootmain
13
14
hang: hlt
15
jmp hang
16
17
18
; vi:set ts=8 sts=8 sw=8 ft=nasm: