More libultra function implementations, euc-jp decoding for print output, improved build times for output project

This commit is contained in:
Mr-Wiseguy 2023-01-16 23:01:21 -05:00
parent c6de2b6189
commit d2603ce07c
26 changed files with 30090 additions and 238 deletions

View file

@ -182,10 +182,10 @@ void do_break(uint32_t vram);
typedef void (recomp_func_t)(uint8_t* restrict rdram, recomp_context* restrict ctx);
recomp_func_t* get_function(uint32_t vram);
recomp_func_t* get_function(int32_t vram);
#define LOOKUP_FUNC(val) \
get_function(val)
get_function((int32_t)(val))
// For the Mario Party games (not working)
//// This has to be in this file so it can be inlined