mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
Add some details to boot structure
This commit is contained in:
parent
0dfa8d7a35
commit
083f808250
@ -42,22 +42,22 @@ pstring_end_\@:
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
begin:
|
begin:
|
||||||
.short 0x4C4B /* boot blocks signature */
|
ID: .short 0x4C4B /* boot blocks signature */
|
||||||
bra start /* entry point to bootcode */
|
Entry: bra start /* entry point to bootcode */
|
||||||
.short 0x4418 /* boot blocks version number */
|
Version: .short 0x4418 /* boot blocks version number */
|
||||||
.short 0x00 /* used internally */
|
PageFlags: .short 0x00 /* used internally */
|
||||||
pString "Mac Bootloader" /* System filename */
|
SysName: pString "Mac Bootloader" /* System filename */
|
||||||
pstring "Copyright 2004" /* Finder filename */
|
ShellName: pstring "Copyright 2004" /* Finder filename */
|
||||||
pString "Laurent Vivier" /* debugger filename */
|
Dbg1Name: pString "Laurent Vivier" /* debugger filename */
|
||||||
pString "Distributed " /* debugger filename */
|
Dbg2Name: pString "Distributed " /* debugger filename */
|
||||||
pString "under GNU GPL " /* name of startup screen */
|
ScreenName: pString "under GNU GPL " /* name of startup screen */
|
||||||
pString "first level " /* name of startup program */
|
HelloName: pString "first level " /* name of startup program */
|
||||||
pString "version 1.1 " /* name of system scrap file */
|
ScrapName: pString "version 1.1 " /* name of system scrap file */
|
||||||
.short 10 /* number of FCBs to allocate */
|
CntFCBs: .short 10 /* number of FCBs to allocate */
|
||||||
.short 20 /* number of event queue elements */
|
CntEvts: .short 20 /* number of event queue elements */
|
||||||
.long 0x00004300 /* system heap size on 128K Mac */
|
Heap128K: .long 0x00004300 /* system heap size on 128K Mac */
|
||||||
.long 0x00008000 /* used internally */
|
Heap256K: .long 0x00008000 /* used internally */
|
||||||
.long 0x00020000 /* system heap size on all machines */
|
SysHeapSize: .long 0x00020000 /* system heap size on all machines */
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user