Check in makerom files (#1758)

* Check in makerom files

* Fix disasm for asm files in src
This commit is contained in:
Tharo
2024-12-22 23:48:13 +00:00
committed by GitHub
parent 187e75c441
commit 06b06ab507
9 changed files with 156 additions and 10 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
#include "boot.h"
#include "carthandle.h"
#include "CIC6105.h"
#include "idle.h"
@@ -9,7 +10,7 @@ StackEntry sBootStackInfo;
OSThread sIdleThread;
STACK(sIdleStack, 0x400);
StackEntry sIdleStackInfo;
STACK(sBootStack, 0x400);
STACK(sBootStack, BOOT_STACK_SIZE);
void bootproc(void) {
StackCheck_Init(&sBootStackInfo, sBootStack, STACK_TOP(sBootStack), 0, -1, "boot");