EMILE/second/head.S

117 lines
1.8 KiB
ArmAsm
Raw Normal View History

2004-02-15 20:46:45 +00:00
/*
*
* (c) 2004, 2005 Laurent Vivier <Laurent@Vivier.EU>
2004-02-15 20:46:45 +00:00
*
*/
.include "../first/macos.i"
#if defined(APPLE_DRIVER)
.include "../first/32bitmode.i"
#endif
2004-05-25 20:12:52 +00:00
.equ paramstring_length, 1024
2004-05-19 00:09:58 +00:00
2004-05-26 23:05:35 +00:00
/***************************************************************************
*
* second level arguments
*
***************************************************************************/
_start: bra setup
_signature: .dc.b 'E','M','0','7'
/* EM06 */
_conf_size: .dc.w paramstring_length
_configuration: .skip paramstring_length, 0
2004-05-19 00:09:58 +00:00
.align 4
setup:
#if defined(APPLE_DRIVER)
lea boot_unit(%pc), %a0
move.l %d5, (%a0)
switch32bitmode
#endif
2004-05-25 20:12:52 +00:00
/* relocate C code, need to be compiled with -fpic */
bsr relocate
2004-02-15 20:46:45 +00:00
/* begin to work */
lea _start(%pc), %a0
2004-06-03 19:30:26 +00:00
move.l %a0, -(%sp)
bsr start@PLTPC
2004-02-15 20:46:45 +00:00
/* We guess to never come here */
loop:
bra loop
relocate:
2004-05-25 20:12:52 +00:00
/* Allocate BSS section */
move.l #__bss_size, %d0 /* size */
/* Alloc and clear memory (needed by GCC 3) */
NewPtrClear /* result in %a0 */
move.l %a0, %d0
bne malloc_ok
SysError
malloc_ok:
2004-05-25 20:12:52 +00:00
move.l %a0,%d3
move.l #__bss_start, %d0
sub.l %d0,%d3 /* %d3 is the offset to add for BSS */
/* real address of GOT */
lea _GLOBAL_OFFSET_TABLE_-.-8,%a0
lea (%pc, %a0), %a0
/* linked address of GOT */
move.l #_GLOBAL_OFFSET_TABLE_, %d0
2004-05-25 20:12:52 +00:00
/* %d2 is the offset to add for all other sections */
move.l %a0,%d2
sub.l %d0,%d2
2004-05-25 20:12:52 +00:00
/* relocate BSS section */
move.l #__got_size, %d0
beq exit_relocate
got_loop:
move.l (%a0), %d1
2004-05-25 20:12:52 +00:00
cmp.l #__bss_start.l, %d1
2004-05-25 20:12:52 +00:00
blt other_section
cmp.l #_end.l, %d1
2004-05-25 20:12:52 +00:00
bgt other_section
/* symbol in section BSS */
add.l %d3, %d1
bra got_store
other_section:
add.l %d2, %d1
2004-05-25 20:12:52 +00:00
got_store:
move.l %d1, (%a0)+
2004-05-25 20:12:52 +00:00
subq.l #4, %d0
bgt got_loop
exit_relocate:
rts
#if defined(APPLE_DRIVER)
PRAM_buffer:
.long 0
.globl boot_unit
boot_unit:
.long 0
#endif