Compare commits

..

No commits in common. "bd3eeb0ca22fd9b10b8a8bb0eee64305bdc8fec5" and "b8f273c9b66e1a75b221fcf412fba09b337ab3d5" have entirely different histories.

2 changed files with 5 additions and 9 deletions

View File

@ -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 @ entry0' -q bootrom.elf
r2 -A -c 'pdf @ sym._start' -q bootrom.elf

View File

@ -7,20 +7,16 @@
#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, 0x40100;\
lui sp, 0x80100;\
j main;\
");
#else
#define main() _start()
#endif /* ifdef ENABLE_STACK */
*/
__attribute__((noreturn, naked)) void main() {
__attribute__((noreturn)) void _start() {
uint8_t state = 0;
uint8_t c;
uint8_t opcode;