https://github.com/nichitaa/realmode-x86-asm
examples of some bios interruption functions
https://github.com/nichitaa/realmode-x86-asm
asmx86 os qemu realmode
Last synced: 3 months ago
JSON representation
examples of some bios interruption functions
- Host: GitHub
- URL: https://github.com/nichitaa/realmode-x86-asm
- Owner: nichitaa
- License: mit
- Created: 2021-11-22T08:04:02.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-07T06:48:10.000Z (almost 4 years ago)
- Last Synced: 2025-03-29T01:38:31.774Z (6 months ago)
- Topics: asmx86, os, qemu, realmode
- Language: Assembly
- Homepage:
- Size: 201 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
> Pasecinic Nichita
#### **Notes**
NASM version 2.14.02 compiled on Dec 26 2018
#### Commands
```bash
$ nasm -f bin boot.asm -o boot.bin # create .bin file
$ nasm -f bin boot.asm -o boot.img # create a image that could be runned on the floppy disk as a SO
$ qemu-system-x86_64 boot.bin # simple floppy disk emulator with qemu
```