Files
super6502/sw/bootloader/bios_calls.h
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

8 lines
118 B
C

#ifndef _BIOS_CALLS_H
#define _BIOS_CALLS_H
#include <stdint.h>
void sd_readblock(uint16_t addr, void* buf);
#endif