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.
This commit is contained in:
8
sw/bootloader/bios_calls.h
Normal file
8
sw/bootloader/bios_calls.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef _BIOS_CALLS_H
|
||||
#define _BIOS_CALLS_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
void sd_readblock(uint16_t addr, void* buf);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user