Fixed eeprom saving on VC (#334)

* Fixed eeprom saving on VC

* Specify SM for EEP4K, for any other savetype use ED

* Moved IS_VC() check to an earlier point, switch IS_VC()->gIsVC

* Moved binary VC files to bin folder, added checks for EEP

* Do not keep vc_bin if EEP is not set
This commit is contained in:
Denis Kopyrin
2022-03-27 10:39:44 +08:00
committed by GitHub
parent 4b9a0b89a0
commit 4a3ef802d5
12 changed files with 128 additions and 3 deletions

View File

@@ -159,6 +159,9 @@ SECTIONS
{
KEEP(BUILD_DIR/asm/entry.o(.text*));
KEEP(BUILD_DIR/asm/n64_assert.o(.text*));
#ifdef EEP
KEEP(BUILD_DIR/asm/vc_bin.o(.text*));
#endif
BUILD_DIR/src/boot*.o(.text*);
BUILD_DIR/src/hvqm*.o(.text*);