diff options
| author | Random <28494085+Random06457@users.noreply.github.com> | 2020-04-14 01:03:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-13 19:03:10 -0400 |
| commit | 298abfb1280134a4def3dc30fab1530edcb64bb8 (patch) | |
| tree | 96441fd1e1a263ebfd91c23343d6296c4fd96ead /src/code/sys_ucode.c | |
| parent | f3c945cc8227ae308b0e8dba25703b7c5ee99832 (diff) | |
Decompile z_jpeg.c (#70)
* Decompile z_jpeg.c
- Decompile z_jpeg.c
- Move .bss variables from fault.c and fault_drawer.c into .s files to avoid bss reordering
* Rename JPEGWork to JpegWork and minor fix in Jpeg_GetU16
Diffstat (limited to 'src/code/sys_ucode.c')
| -rw-r--r-- | src/code/sys_ucode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/sys_ucode.c b/src/code/sys_ucode.c index f23c7239a..e34fd1307 100644 --- a/src/code/sys_ucode.c +++ b/src/code/sys_ucode.c @@ -4,14 +4,14 @@ u32 SysUcode_GetUCodeBoot() { return &D_80009320; } -u32 SysUcode_GetUcodeBootSize() { +u32 SysUcode_GetUCodeBootSize() { return (u32)&D_800093F0 - (u32)&D_80009320; } -u32 SysUcode_GetUcode() { +u32 SysUcode_GetUCode() { return D_8012DBA0; } -u32 SysUcode_GetUcodeData() { +u32 SysUcode_GetUCodeData() { return D_8012DBA4; } |
