Files
super6502/sw/bootloader/main.c
Byron Lathi 9dd460a47f Add preliminary bootloader
This bootloader right now just prints the letter A, but should be
capable of reading blocks from the SD card into memory.
2022-04-18 20:25:08 -05:00

11 lines
172 B
C

#include <stdint.h>
#include "bios_calls.h"
#include "uart.h"
//Should probably do this in asm
void load_bootsect() {
uart_txb_block('A');
for (;;);
return;
}