Split `nucontpak` files

Add `nucontpakopen.c`
Add `nucontpakgetfree.c`
Add `nucontpakrepairid.c`
Add `nucontpakfileopen.c`
Add `nucontpakfilereadwrite.c`
Add `nucontpakfiledelete.c`
Add `nucontpakfilestate.c`
This commit is contained in:
gijs 2023-10-22 11:53:42 +02:00
parent cce70d0aae
commit 012990335c
8 changed files with 28 additions and 6 deletions

View File

@ -133,14 +133,15 @@ segments:
- [0x1AA60, c, "nu/nucontreadfuncset"]
- [0x1AAA0, c, "nu/nucontpakmgr"]
- [0x1AD10, asm]
- [0x1AFD0, asm]
- [0x1B030, asm]
- [0x1B070, asm]
- [0x1AFD0, c, "nu/nucontpakopen"]
- [0x1B030, c, "nu/nucontpakgetfree"]
- [0x1B070, c, "nu/nucontpakrepairid"]
- [0x1B0A0, c, "nu/nucontpakfileopen"]
- [0x1B160, asm]
- [0x1B240, asm]
- [0x1B290, asm]
- [0x1B2E0, asm]
- [0x1B320, asm]
- [0x1B290, c, "nu/nucontpakfilereadwrite"]
- [0x1B2E0, c, "nu/nucontpakfiledelete"]
- [0x1B320, c, "nu/nucontpakfilestate"]
- [0x1B360, asm]
- [0x1B3A0, c, "_ob_electric_zephyr"]
- [0x1B3E0, c, "nu/nugfxthread"]

View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakfiledelete", nuContPakFileDelete);

View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakfileopen", nuContPakFileOpen);

View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakfilereadwrite", nuContPakFileReadWrite);

View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakfilestate", nuContPakFileState);

View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakgetfree", nuContPakGetFree);

3
src/nu/nucontpakopen.c Normal file
View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakopen", nuContPakOpen);

View File

@ -0,0 +1,3 @@
#include "common.h"
INCLUDE_ASM(const s32, "nu/nucontpakrepairid", nuContPakRepairId);