more fiddling with leading underscore in symbols

This commit is contained in:
Markus Fröschle
2012-10-14 05:34:33 +00:00
parent ebedb4dc72
commit 5fcc66786e
26 changed files with 939 additions and 939 deletions

View File

@@ -11,26 +11,26 @@ void _startup(void)
"| disable interrupts\n\t"
"move.w #0x2700,sr\n\t"
"|// Initialize MBAR\n\t"
"MOVE.L #___MBAR,D0\n\t"
"MOVE.L #__MBAR,D0\n\t"
"MOVEC D0,MBAR\n\t"
"MOVE.L D0,_rt_mbar\n\t"
"| mmu off\n\t"
"move.l #___MMUBAR+1,d0\n\t"
"move.l #__MMUBAR+1,d0\n\t"
"movec d0,MMUBAR | mmubar setzen\n\t"
"clr.l d0\n\t"
"move.l d0,MCF_MMU_MMUCR\n\t | mmu off"
"|/* Initialize RAMBARs: locate SRAM and validate it */\n\t"
"move.l #___RAMBAR0 + 0x7,d0\n\t | supervisor only"
"move.l #__RAMBAR0 + 0x7,d0\n\t | supervisor only"
"movec d0,RAMBAR0\n\t"
"move.l #___RAMBAR1 + 0x1,d0\n\t"""
"move.l #__RAMBAR1 + 0x1,d0\n\t"""
"movec d0,RAMBAR1\n\t"
"| STACKPOINTER AUF ENDE SRAM1\n\t"
"lea ___SUP_SP,a7\n\t"
"lea __SUP_SP,a7\n\t"
"| instruction cache on\n\t"
"move.l #0x000C8100,d0\n\t"
"movec d0,cacr\n\t"
"nop\n\t"
"| initialize any hardware specific issues\n\t"
"bra _initialize_hardware\n\t"
);
);
}