emu64 work and misc improvements

This commit is contained in:
Cuyler36
2023-08-28 21:01:23 -04:00
parent 1d9045ad10
commit 595e2a92df
35 changed files with 2746 additions and 6 deletions
+5 -1
View File
@@ -3,6 +3,10 @@
#include "types.h"
#if defined(__INTELLISENSE__) && defined(__cplusplus)
#define __builtin_va_info(v) /* definition for IDEs */
#endif
typedef struct __va_list_struct {
char gpr;
char fpr;
@@ -21,4 +25,4 @@ typedef _va_list_struct __va_list[1];
#define va_list __va_list
#define __va_end(list) ((void)0)
#endif
#endif