项目作者: foo0x29a

项目描述 :
Bootloader experiments
高级语言: Assembly
项目地址: git://github.com/foo0x29a/bootloader.git
创建时间: 2019-11-23T15:03:55Z
项目社区:https://github.com/foo0x29a/bootloader

开源协议:

下载


Bootloader

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

How to build

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

How to run

Using qemu:

  1. $ qemu-system-i386 boot

How to debug

Normally build but run using bochs:

  1. $ bochs