From 039353c6c96d121476e1752afb502fb92f1b0e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=98=8E=E5=B2=B3?= <3249977074@qq.com> Date: Mon, 10 Dec 2018 15:41:40 +0800 Subject: [PATCH] Create e-boot.bin --- e-boot.bin | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 e-boot.bin diff --git a/e-boot.bin b/e-boot.bin new file mode 100644 index 0000000..b3ddadc --- /dev/null +++ b/e-boot.bin @@ -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