Files
2025-12-30 08:33:13 +00:00

12 lines
250 B
Markdown

# read&write
```bash
nasm -f bin mybios.asm -o mybios.bin
qemu-system-i386 -bios mybios.bin -nographic
```
```bash
nasm -f bin myboot.asm -o myboot.bin
qemu-system-i386 -M pc -drive file=myboot.bin,format=raw,index=0,media=disk -display curses
```