mirror of
https://github.com/zeldaret/oot
synced 2026-09-01 09:43:06 -04: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:
@@ -63,7 +63,7 @@ def handle_word_l(match):
|
||||
|
||||
|
||||
def main():
|
||||
preamble = ".include \"macro.inc\"\n\n # assembler directives\n .set noat # allow manual use of $at\n .set noreorder # don't insert nops after branches\n .set gp=64 # allow use of 64-bit general purposee registers\n\n"
|
||||
preamble = ".include \"macro.inc\"\n\n # assembler directives\n .set noat # allow manual use of $at\n .set noreorder # don't insert nops after branches\n .set gp=64 # allow use of 64-bit general purpose registers\n\n"
|
||||
|
||||
for root, dirs, files in os.walk(data_dir):
|
||||
for file in files:
|
||||
|
||||
Reference in New Issue
Block a user