From 1e552d3236127335c2c0fe2795d5449c2272f709 Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Tue, 9 Dec 2025 09:21:00 -0300 Subject: [PATCH] Fix bss --- include/PR/ucode.h | 4 ---- src/boot/CIC6105.c | 6 +++++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/PR/ucode.h b/include/PR/ucode.h index c40447a120..848983ebee 100644 --- a/include/PR/ucode.h +++ b/include/PR/ucode.h @@ -13,10 +13,6 @@ extern u64 rspbootTextStart[]; extern u64 rspbootTextEnd[]; -// TODO: maybe move to a different header, since this is not part of the vanilla ucode.h file -extern u64 cic6105TextStart[]; -extern u64 cic6105TextEnd[]; - extern u64 aspMainTextStart[]; extern u64 aspMainTextEnd[]; extern u64 aspMainDataStart[]; diff --git a/src/boot/CIC6105.c b/src/boot/CIC6105.c index cacef74a02..42e176d9d6 100644 --- a/src/boot/CIC6105.c +++ b/src/boot/CIC6105.c @@ -6,7 +6,11 @@ #include "regs.h" #include "scheduler.h" -#pragma increment_block_number "n64-us:200" +#pragma increment_block_number "n64-us:188" + +// TODO: Consider moving to a header file. +extern u64 cic6105TextStart[]; +extern u64 cic6105TextEnd[]; s32 gCICAddr1Val; s32 gCICAddr2Val;