Create e-boot.bin

This commit is contained in:
李明岳 2018-12-10 15:41:40 +08:00 committed by GitHub
parent 9c685f670e
commit 039353c6c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
e-boot.bin Normal file
View File

@ -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