try using uncached memory??

This commit is contained in:
lif 2023-12-31 00:10:08 -08:00
parent f974a8c128
commit b296b42f0f
1 changed files with 7 additions and 2 deletions

View File

@ -623,10 +623,15 @@ fnptrs:
#endif
.align 2
defsymbl(rom_translation_cache)
defsymbl(rom_translation_cache_n64cached)
.space ROM_TRANSLATION_CACHE_SIZE
defsymbl(ram_translation_cache)
defsymbl(ram_translation_cache_n64cached)
.space RAM_TRANSLATION_CACHE_SIZE
.set rom_translation_cache, rom_translation_cache_n64cached + 0x20000000
.set ram_translation_cache, ram_translation_cache_n64cached + 0x20000000
.global rom_translation_cache
.global ram_translation_cache
#endif