From 9f013cf80203e66f7184cd1506a09f3cf8cf68fa Mon Sep 17 00:00:00 2001 From: dz Date: Fri, 30 Sep 2016 23:39:58 +0200 Subject: [PATCH] update --- README | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..760a97e --- /dev/null +++ b/README @@ -0,0 +1,25 @@ +Sonstiges + +objdump -D -b binary -mi386 -Maddr16,data16 mbr.com |less + +============================================================================== + +echo -n -e '\x55\xaa' > signature.bin +dd if=/dev/zero of=mbr.img bs=512 count=1 + +nasm code.asm + +dd conv=notrunc if=code of=mbr.img +dd conv=notrunc if=signature.bin of=mbr.img bs=1 seek=510 + +qemu-system-i386 mbr.img + + + mov ah, 0x0e + mov al, 'X' + int 0x10 + + +Other +1. https://github.com/Shikhin/tetranglix +2. Bootris