Many small changes and fixes for building a 64-bit application.

Both GCC and VC builds seem to work OK for Windows, as does the Linux version.
This commit is contained in:
waltje
2018-10-25 01:20:04 -04:00
parent ce7ca74f9b
commit 98eaa3bd34
60 changed files with 442 additions and 463 deletions

View File

@@ -173,7 +173,11 @@ flushmmucache(void)
mmuflush++;
pccache = (uint32_t)0xffffffff;
#ifdef _MSC_VER
pccache2 = (uint8_t *)0xffffffffffffffff;
#else
pccache2 = (uint8_t *)0xffffffff;
#endif
#ifdef USE_DYNAREC
codegen_flush();