Source code reorgnaizations

This commit is contained in:
d0k3 2017-09-04 16:18:07 +02:00
parent ebf904a2c2
commit 8d1f39d235
22 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -39,4 +39,5 @@
# User additions
/data/aeskeydb.bin
/data/aeskeydb_.bin
/zzz_backup

View File

@ -21,9 +21,9 @@ ifeq ($(SAFEMODE),1)
export TARGET := SafeMode9
endif
BUILD := build
SOURCES := source source/common source/filesys source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz source/system
SOURCES := source source/common source/filesys source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz source/system source/utils
DATA := data
INCLUDES := common source source/common source/font source/filesys source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz source/system
INCLUDES := common source source/common source/font source/filesys source/crypto source/fatfs source/nand source/virtual source/game source/gamecart source/quicklz source/system source/utils
#---------------------------------------------------------------------------------
# options for code generation

View File

@ -78,7 +78,7 @@
// buffer area defines (in use by sddata.c)
#define SDCRYPT_BUFFER ((u8*)0x21400000)
#define SDCRYPT_BUFFER_SIZE (0x100000)
// buffer area defines (in use by fsscript.c)
// buffer area defines (in use by scripting.c)
#define SCRIPT_BUFFER ((u8*)0x21500000)
#define SCRIPT_BUFFER_SIZE (0x100000)
// buffer area defines (in use by vgame.c)

View File

@ -5,7 +5,7 @@
#include "game.h"
#include "keydb.h"
#include "ctrtransfer.h"
#include "fsscript.h"
#include "scripting.h"
u32 IdentifyFileType(const char* path) {
const u8 romfs_magic[] = { ROMFS_MAGIC };

View File

@ -6,7 +6,7 @@
#include "fsutil.h"
#include "fsperm.h"
#include "fsgame.h"
#include "fsscript.h"
#include "scripting.h"
#include "gameutil.h"
#include "keydbutil.h"
#include "nandutil.h"

View File

@ -1,4 +1,4 @@
#include "fsscript.h"
#include "scripting.h"
#include "fsutil.h"
#include "fsinit.h"
#include "fsperm.h"