mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
Change defaut BCT0 for debug
This commit is contained in:
parent
4199be2460
commit
dc3099781d
1 changed files with 19 additions and 14 deletions
|
@ -13,7 +13,12 @@
|
||||||
#define BCT0_LOAD_END_ADDRESS (uintptr_t)(0x4003F000)
|
#define BCT0_LOAD_END_ADDRESS (uintptr_t)(0x4003F000)
|
||||||
#define MAGIC_BCT0 0x30544342
|
#define MAGIC_BCT0 0x30544342
|
||||||
|
|
||||||
#define DEFAULT_BCT0_FOR_DEBUG "BCT0\n[stage1]\nstage2_path = stage2.bin\nstage2_addr = 0xFFF00000\nstage2_entrypoint = 0xCAFEBABE\n"
|
#define DEFAULT_BCT0_FOR_DEBUG \
|
||||||
|
"BCT0\n"\
|
||||||
|
"[stage1]\n"\
|
||||||
|
"stage2_path = fusee-secondary.bin\n"\
|
||||||
|
"stage2_addr = 0xFFF00000\n"\
|
||||||
|
"stage2_entrypoint = 0xFFF00000\n"
|
||||||
|
|
||||||
const char *load_config(void) {
|
const char *load_config(void) {
|
||||||
if (!read_sd_file((void *)BCT0_LOAD_ADDRESS, BCT0_LOAD_END_ADDRESS - BCT0_LOAD_ADDRESS, "BCT.ini")) {
|
if (!read_sd_file((void *)BCT0_LOAD_ADDRESS, BCT0_LOAD_END_ADDRESS - BCT0_LOAD_ADDRESS, "BCT.ini")) {
|
||||||
|
|
Loading…
Reference in a new issue