mirror of
https://github.com/daniel-e/tetros.git
synced 2025-04-19 16:38:05 +02:00
25 lines
464 B
Text
25 lines
464 B
Text
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
|