# | Line 89 | Line 89 | using std::string; | |
---|---|---|
89 | #include "rpc.h" | |
90 | ||
91 | #if USE_JIT | |
92 | < | extern void flush_icache_range(uint32 start, uint32 size); // from compemu_support.cpp |
92 | > | extern void flush_icache_range(uint8 *start, uint32 size); // from compemu_support.cpp |
93 | #endif | |
94 | ||
95 | #ifdef ENABLE_MON | |
# | Line 945 | Line 945 | void FlushCodeCache(void *start, uint32 | |
945 | { | |
946 | #if USE_JIT | |
947 | if (UseJIT) | |
948 | < | flush_icache_range((uintptr)start, size); |
948 | > | flush_icache_range((uint8 *)start, size); |
949 | #endif | |
950 | #if !EMULATED_68K && defined(__NetBSD__) | |
951 | m68k_sync_icache(start, size); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |