cut bootmain to 1 sheet
This commit is contained in:
parent
8d2e9a4867
commit
8e67005320
1 changed files with 7 additions and 27 deletions
32
bootmain.c
32
bootmain.c
|
@ -1,31 +1,11 @@
|
||||||
// This a dirt simple boot loader, whose sole job is to boot
|
// Boot loader.
|
||||||
// an elf kernel image from the first IDE hard disk.
|
|
||||||
//
|
//
|
||||||
// DISK LAYOUT
|
// The BIOS loads boot sector (bootasm.S) from sector 1 of the disk
|
||||||
// * This program(boot.S and main.c) is the bootloader. It should
|
// into memory and executes it. The boot sector puts the processor
|
||||||
// be stored in the first sector of the disk.
|
// in 32-bit mode and calls cmain below, which loads an ELF kernel
|
||||||
//
|
// image from the disk starting at sector 2 and then jumps to the
|
||||||
// * The 2nd sector onward holds the kernel image.
|
// kernel entry routine.
|
||||||
//
|
|
||||||
// * The kernel image must be in ELF format.
|
|
||||||
//
|
|
||||||
// BOOT UP STEPS
|
|
||||||
// * when the CPU boots it loads the BIOS into memory and executes it
|
|
||||||
//
|
|
||||||
// * the BIOS intializes devices, sets up the interrupt routines, and
|
|
||||||
// reads the first sector of the boot device(e.g., hard-drive)
|
|
||||||
// into memory and jumps to it.
|
|
||||||
//
|
|
||||||
// * Assuming this boot loader is stored in the first sector of the
|
|
||||||
// hard-drive, this code takes over...
|
|
||||||
//
|
|
||||||
// * control starts in bootloader.S -- which sets up protected mode,
|
|
||||||
// and a stack so C code then run, then calls cmain()
|
|
||||||
//
|
|
||||||
// * cmain() in this file takes over,
|
|
||||||
// reads in the kernel and jumps to it.
|
|
||||||
|
|
||||||
//PAGEBREAK!
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
#include "x86.h"
|
#include "x86.h"
|
||||||
|
|
Loading…
Reference in a new issue