Disassemble ARM9

This commit is contained in:
Aetias
2023-09-09 12:26:18 +02:00
commit a2c2c563f7
67 changed files with 1807206 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#pragma once
.macro arm_func_start name
.balign 4, 0
.global \name
.type \name, @function
.arm
.endm
.macro arm_func_end name
.size \name, .-\name
.endm
.macro thumb_func_start name
.balign 4, 0
.global \name
.type \name, @function
.thumb
.endm
.macro non_word_aligned_thumb_func_start name
.global \name
.type \name, @function
.thumb
.endm
.macro thumb_func_end name
.size \name, .-\name
.endm