Skip to content

joesavage/bare-bones-bootloader

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

A really basic BIOS 'bootloader' (sort of - it doesn't actually load any external code, but it boots for sure and could load with minor additions). Keepin' it real-mode, homies.

To compile the nasm version and run the resulting binary in qemu:

    make

If you only want to compile the binary:

    make bootloader.bin

For the AT&T-Style version set SOURCE to "bootloader.S":

    make SOURCE=bootloader.S bootloader.bin

Associated Blog Post