Implement & link famicom.cpp

This commit is contained in:
Cuyler36
2024-01-29 20:31:47 -05:00
parent 7788f50a59
commit d08076381b
39 changed files with 4048 additions and 119 deletions
+8
View File
@@ -4,8 +4,16 @@
#include "types.h"
#include "va_args.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void vprintf(const char*, va_list);
extern void printf(const char*, ...);
int snprintf(char* s, size_t n, const char* format, ...);
#ifdef __cplusplus
}
#endif
#endif