Start now lands in an infinite loop

This commit is contained in:
Imbus 2025-06-26 02:57:54 +02:00
parent 2490a4e4df
commit 0c71360d71

View file

@ -2,9 +2,7 @@
#define UART ((char *)0x10000000)
void uart_putc(char c) {
*UART = c;
}
void uart_putc(char c) { *UART = c; }
void uart_puts(const char *s) {
while (*s) {
@ -17,4 +15,5 @@ __attribute__((aligned(16))) char stack0[4096 * NCPU];
void start() {
uart_puts("Hello Neptune!\n");
while (1);
}