Compare commits

...

3 Commits

Author SHA1 Message Date
bd3eeb0ca2 sw: bootrom: Prevent gcc from generating prologue
Specifically, we do not want it to push anything to the stack
(such as the frame pointer), because it is not yet set up.
2025-01-30 20:16:23 +01:00
916a3c1a4e sw: bootrom: Make stack selectable via define 2025-01-30 20:15:29 +01:00
d4ca976641 sw: bootrom: Fix memory address for stack 2025-01-30 20:13:36 +01:00
2 changed files with 9 additions and 5 deletions
sw/bootrom

@ -5,4 +5,4 @@ riscv64-elf-gcc -mabi=ilp32 -march=rv32i -nostdlib -nostartfiles -ffreestanding
#riscv64-elf-objdump -D bootrom.elf
riscv64-elf-objcopy -O binary bootrom.elf bootrom.bin
od --endian=little -vtx4 -An -w4 bootrom.bin | tr -d ' ' > bootrom.vhex
r2 -A -c 'pdf @ sym._start' -q bootrom.elf
r2 -A -c 'pdf @ entry0' -q bootrom.elf

@ -7,16 +7,20 @@
#define UART0_SR_RX_DATA_EMPTY (1 << 0)
#define UART0_SR_TX_FULL (1 << 1)
/*
//#define ENABLE_STACK
#ifdef ENABLE_STACK
// Set up stack pointer
asm("_start:\
xor sp, sp, sp;\
lui sp, 0x80100;\
lui sp, 0x40100;\
j main;\
");
*/
#else
#define main() _start()
#endif /* ifdef ENABLE_STACK */
__attribute__((noreturn)) void _start() {
__attribute__((noreturn, naked)) void main() {
uint8_t state = 0;
uint8_t c;
uint8_t opcode;