mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-11 01:10:33 +00:00
Properly align asm & data (+ minor fixes) (#165)
* Add .align 4 directives to all data/ files (+ minor alignment fixes) * Use .balign for everything and fix typo
This commit is contained in:
parent
ba0e57eecd
commit
53ceea717d
979 changed files with 3631 additions and 1894 deletions
|
@ -3,10 +3,12 @@
|
|||
# assembler directives
|
||||
.set noat # allow manual use of $at
|
||||
.set noreorder # don't insert nops after branches
|
||||
.set gp=64 # allow use of 64-bit general purposee registers
|
||||
.set gp=64 # allow use of 64-bit general purpose registers
|
||||
|
||||
.section .data
|
||||
|
||||
.balign 16
|
||||
|
||||
glabel Obj_Timeblock_InitVars
|
||||
.word 0x01D10700, 0x0A000011, 0x01900000, 0x0000017C
|
||||
.word ObjTimeblock_Init
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue