mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 06:48:22 -04:00
Implement all core Stage 1 logic for Fusee
This commit is contained in:
parent
18f1274587
commit
33f76545df
19 changed files with 14671 additions and 31 deletions
|
@ -1,8 +1,9 @@
|
|||
#include "sd_utils.h"
|
||||
|
||||
int read_sd_file(void *dst, const char *filename) {
|
||||
int read_sd_file(void *dst, size_t dst_size, const char *filename) {
|
||||
/* TODO: Implement this function. */
|
||||
(void)(dst);
|
||||
(void)(dst_size);
|
||||
(void)(filename);
|
||||
|
||||
/* Fail, because this function is unimplemented. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue