// rom.h // The bytes the machine wakes up in. // // Stage one, built from Programs/Boot/stage1.asm by the makefile rather than kept here as // a copy, because a copy of a program stored beside the program is a copy that goes stale. // // It is an ordinary boot image, and that is the point: nothing about stage one changes // when it moves from a file into a ROM except who puts it in memory. // // Written by Anachronaut #ifndef ROM_H #define ROM_H extern const unsigned char bootROM[]; extern const unsigned long bootROMBytes; #endif // ROM_H