sw: bootrom: Fix memory address for stack

This commit is contained in:
Markus Koch 2025-01-30 20:13:36 +01:00
parent b8f273c9b6
commit d4ca976641

View File

@ -11,7 +11,7 @@
// Set up stack pointer
asm("_start:\
xor sp, sp, sp;\
lui sp, 0x80100;\
lui sp, 0x40100;\
j main;\
");
*/