EMILE/first/first.S

202 lines
4.9 KiB
ArmAsm
Raw Normal View History

2004-02-15 20:46:45 +00:00
/*
*
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
.equ drive_num, 1
.equ fsFromStart, 1
.equ sector_size, 512
.equ sectors_per_track, 18
.equ sides, 2
.equ track_size, sector_size * sectors_per_track
.equ track_number, 80
.equ floppy_size, sides * track_size * track_number
.equ first_level_size, 2 * sector_size
.equ second_level_size, floppy_size - first_level_size
.equ ROMBase, 0x2ae
.macro StripAddress
.short 0xA055
.endm
.macro ReadXPRam
.short 0xA051
.endm
.macro WriteXPRam
.short 0xA052
.endm
.macro NewPtr
.short 0xA11E
2004-02-15 20:46:45 +00:00
.endm
.macro PBReadSync
.short 0xA002
.endm
.macro SysError
.short 0xA9C9
.endm
2004-02-15 20:46:45 +00:00
/* Pascal string : length, string */
.macro pString string
pstring_begin_\@:
.byte pstring_end_\@ - pstring_string_\@ - 1
2004-02-15 20:46:45 +00:00
pstring_string_\@:
.string "\string"
pstring_end_\@:
.fill 16 - (pstring_end_\@ - pstring_begin_\@) , 1, 0
.endm
/******************************************************************************
*
* Structure: "Inside Macintosh: Files", p. 2-57
*
*****************************************************************************/
2004-02-15 20:46:45 +00:00
begin:
2004-07-10 01:29:17 +00:00
ID: .short 0x4C4B /* boot blocks signature */
Entry: bra start /* entry point to bootcode */
Version: .short 0x4418 /* boot blocks version number */
PageFlags: .short 0x00 /* used internally */
SysName: pString "Mac Bootloader" /* System filename */
ShellName: pstring "Copyright 2004" /* Finder filename */
Dbg1Name: pString "Laurent Vivier" /* debugger filename */
Dbg2Name: pString "Distributed " /* debugger filename */
ScreenName: pString "under GNU GPL " /* name of startup screen */
HelloName: pString "first level " /* name of startup program */
ScrapName: pString "version 1.1 " /* name of system scrap file */
CntFCBs: .short 10 /* number of FCBs to allocate */
CntEvts: .short 20 /* number of event queue elements */
Heap128K: .long 0x00004300 /* system heap size on 128K Mac */
Heap256K: .long 0x00008000 /* used internally */
SysHeapSize: .long 0x00020000 /* system heap size on all machines */
2004-02-15 20:46:45 +00:00
/******************************************************************************
*
* param block used to load second stage
*
*****************************************************************************/
2004-02-15 20:46:45 +00:00
param_block:
.long 0 /* qLink : next queue entry */
.short 0 /* qType : queue type */
.short 0 /* ioTrap : routine trap */
.long 0 /* ioCmdAddr: routine address */
.long 0 /* ioCompletion : pointer to completion routine */
.short 0 /* ioResult : result code */
.long 0 /* ioNamePtr : pointer to pathname */
.short drive_num /* ioVRefNum : volume specification */
.short -5 /* ioRefNum: file reference number */
.byte 0 /* ioVersNum : version number */
.byte 0 /* ioPermssn : read/write permission */
.long 0 /* ioMisc : miscellaneaous */
ioBuffer: /* ioBuffer : data buffer */
.long 0
ioReqCount: /* ioReqCount : requested number of bytes */
.long second_level_size
.long 0 /* ioActCount : actual number of bytes */
.short fsFromStart /* ioPosMode : positioning mode and newline char */
ioPosOffset: /* ioPosOffset : positionning offset */
.long first_level_size
/******************************************************************************
*
* start : load the second stage
*
* start is called from the boot block header
*
* call PBReadSync() to read blocks from floppy
* as described in param_block
*
*****************************************************************************/
start:
movea.l ROMBase,%a0
move.w 8(%a0), %d1 /* read ROM id */
cmp.w #0x0178, %d1 /* only 24bit ROM */
bls.S bit32_ok
/* test if we are in 32bit mode */
move.l #-1, %d0
StripAddress
cmp.l #-1, %d0
beq.S bit32_ok
/* Switch to 32bit mode */
lea PRAM_buffer(%pc), %a0 /* where to store data */
move.w #1, %d0 /* size of data */
swap %d0
move.w #0x08A, %d0 /* offset in PRAM */
ReadXPRam
lea PRAM_buffer(%pc), %a0
or.b #0x05, (%a0)
move.w #1, %d0 /* size of data */
swap %d0
move.w #0x08A, %d0 /* offset in PRAM */
WriteXPRam
/* jump to reset function in ROM */
movea.l ROMBase,%a0
jmp 0x90(%a0)
bit32_ok:
/* Allocate Memory for second stage loader */
lea ioReqCount(%pc),%a0
move.l (%a0), %d0
add.l #4, %d0
NewPtr
move.l %a0, %d0
bne malloc_ok
move.l #1, %d0
SysError
malloc_ok:
add.l #3, %d0
and.l #0xFFFFFFFC.l, %d0
/* save result in the ParamBlockRec.ioBuffer */
lea ioBuffer(%pc),%a0
move.l %d0,(%a0)
/* Now, we load the second stage loader */
lea param_block(%pc),%a0
PBReadSync
tst.l %d0
beq read_ok
move.l #2, %d0
SysError
read_ok:
/* call second stage bootloader */
move.l ioBuffer(%pc),%a0
jmp (%a0)
PRAM_buffer:
.long 0
2004-02-15 20:46:45 +00:00
end:
/******************************************************************************
*
* Filler: the boot block is 2 floppy blocks
* as seen on the disk of utilities of MacOS 7.6, we fill with 0xda
*
*****************************************************************************/
.fill first_level_size - (end - begin), 1, 0xda