Create e-boot.bin
This commit is contained in:
parent
9c685f670e
commit
039353c6c9
|
|
@ -0,0 +1,10 @@
|
|||
start:
|
||||
mov al, 'e'
|
||||
int 0x10
|
||||
jmp start
|
||||
|
||||
jmp $ ; jump to current address = infinite loop
|
||||
|
||||
; padding and magic number
|
||||
times 510 - ($-$$) db 0
|
||||
dw 0xaa55
|
||||
Loading…
Reference in New Issue