diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-07-07 11:39:34 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2021-07-07 11:39:34 -0500 |
commit | 6aa475c6310c609743a9a2005e7942050c396865 (patch) | |
tree | 18be7369829badfef35a6c337005e875049027e5 /src/main.c | |
parent | f308c79eba1ba8e6bc2134529a2e4f4f21c9c2c2 (diff) |
Sese's vacation work
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -232,9 +232,9 @@ void InitIntrTable(const u32 *interrupt_table) INTR_VECTOR = IntrMain_Buffer; } -u32 *sub_800B6E8(u32 r0) +u32 *GetInterruptCallback(u32 index) { - return &gIntrTable[r0]; + return &gIntrTable[index]; } void *SetInterruptCallback(u32 index, void * new_callback) |