mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 19:54:21 +01:00
Merge pull request #1763 from GriffinRichards/rm-global
Drop usage of global directive
This commit is contained in:
commit
c1dfd3c9ec
@ -5,8 +5,7 @@
|
||||
.arm
|
||||
|
||||
.align 2, 0
|
||||
.global Init
|
||||
Init:
|
||||
Init::
|
||||
mov r0, #PSR_IRQ_MODE
|
||||
msr cpsr_cf, r0
|
||||
ldr sp, sp_irq
|
||||
@ -33,8 +32,7 @@ sp_irq: .word IWRAM_END - 0x60
|
||||
|
||||
.arm
|
||||
.align 2, 0
|
||||
.global IntrMain
|
||||
IntrMain:
|
||||
IntrMain::
|
||||
mov r3, #REG_BASE
|
||||
add r3, r3, #OFFSET_REG_IE
|
||||
ldr r2, [r3]
|
||||
|
@ -1,19 +1,16 @@
|
||||
@ Note: ROM header data is empty space here.
|
||||
@ It's populated by gbafix using data provided in the Makefile.
|
||||
|
||||
.global Start
|
||||
Start:
|
||||
Start::
|
||||
b Init
|
||||
|
||||
.global RomHeaderNintendoLogo
|
||||
RomHeaderNintendoLogo:
|
||||
RomHeaderNintendoLogo::
|
||||
.space 156
|
||||
|
||||
RomHeaderGameTitle:
|
||||
.space 12
|
||||
|
||||
.global RomHeaderGameCode
|
||||
RomHeaderGameCode:
|
||||
RomHeaderGameCode::
|
||||
.space 4
|
||||
|
||||
RomHeaderMakerCode:
|
||||
@ -31,8 +28,7 @@ RomHeaderDeviceType:
|
||||
RomHeaderReserved1:
|
||||
.space 7
|
||||
|
||||
.global RomHeaderSoftwareVersion
|
||||
RomHeaderSoftwareVersion:
|
||||
RomHeaderSoftwareVersion::
|
||||
.byte 0
|
||||
|
||||
RomHeaderChecksum:
|
||||
@ -43,16 +39,13 @@ RomHeaderReserved2:
|
||||
|
||||
.word 0
|
||||
|
||||
.global GPIOPortData
|
||||
GPIOPortData:
|
||||
GPIOPortData::
|
||||
.2byte 0
|
||||
|
||||
.global GPIOPortDirection
|
||||
GPIOPortDirection:
|
||||
GPIOPortDirection::
|
||||
.2byte 0
|
||||
|
||||
.global GPIOPortReadEnable
|
||||
GPIOPortReadEnable:
|
||||
GPIOPortReadEnable::
|
||||
.2byte 0
|
||||
|
||||
.2byte 0
|
||||
|
Loading…
Reference in New Issue
Block a user