Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 400 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 400 Bytes

Bootloader

This repository holds some bootloader exercises/experiments based on 0xAX. It is written in GNU assembly (AT&T syntax).

How to build

$ as boot.s -o boot.o
$ ld --oformat binary -T linker.ld boot.o -o boot 

How to run

Using qemu:

$ qemu-system-i386 boot

How to debug

Normally build but run using bochs:

$ bochs