summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mips/mips3com.cpp
diff options
context:
space:
mode:
author andreasnaive <andreasnaive@gmail.com>2019-03-25 23:13:40 +0100
committer andreasnaive <andreasnaive@gmail.com>2019-03-25 23:13:40 +0100
commitb380514764cf857469bae61c11143a19f79a74c5 (patch)
tree63c8012e262618f08a332da31dd714281aa2c5ed /src/devices/cpu/mips/mips3com.cpp
parentc24473ddff715ecec2e258a6eb38960cf8c8e98e (diff)
Revert "conflict resolution (nw)"
This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing changes made to 009cba4fb8102102168ef32870892438327f3705.
Diffstat (limited to 'src/devices/cpu/mips/mips3com.cpp')
-rw-r--r--src/devices/cpu/mips/mips3com.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/devices/cpu/mips/mips3com.cpp b/src/devices/cpu/mips/mips3com.cpp
index 04225d86da7..0cab50ca894 100644
--- a/src/devices/cpu/mips/mips3com.cpp
+++ b/src/devices/cpu/mips/mips3com.cpp
@@ -273,13 +273,6 @@ uint32_t mips3_device::compute_config_register()
else if (c_icache_size <= 0x40000) configreg |= 6 << 9;
else configreg |= 7 << 9;
- if (c_secondary_cache_line_size != 0) {
- configreg &= ~((0xf << 20) | (1 << 17));
- if (c_secondary_cache_line_size <= 0x10) configreg |= 0 << 22;
- else if (c_secondary_cache_line_size <= 0x20) configreg |= 1 << 22;
- else if (c_secondary_cache_line_size <= 0x40) configreg |= 2 << 22;
- else configreg |= 3 << 22;
- }
/* set the system clock divider */
int divisor = 2;
if (c_system_clock != 0)