Search
lxdream.org :: lxdream/src/sh4/sh4.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4.c
changeset 935:45246788ca00
prev934:3acd3b3ee6d1
next936:f394309c399a
author nkeynes
date Sat Dec 27 02:18:17 2008 +0000 (15 years ago)
branchlxdream-mem
permissions -rw-r--r--
last change Simplify xlat_lut slightly (cache now always initialized even if we're not
translating, just for efficiency)
file annotate diff log raw
1.1 --- a/src/sh4/sh4.c Fri Dec 26 14:25:23 2008 +0000
1.2 +++ b/src/sh4/sh4.c Sat Dec 27 02:18:17 2008 +0000
1.3 @@ -63,7 +63,6 @@
1.4 {
1.5 // No-op if the translator was not built
1.6 #ifdef SH4_TRANSLATOR
1.7 - xlat_cache_init();
1.8 if( use ) {
1.9 sh4_translate_init();
1.10 }
1.11 @@ -80,6 +79,7 @@
1.12 {
1.13 register_io_regions( mmio_list_sh4mmio );
1.14 TMU_init();
1.15 + xlat_cache_init();
1.16 sh4_mem_init();
1.17 sh4_reset();
1.18 #ifdef ENABLE_SH4STATS
.