summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-11-02 12:14:01 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-11-02 12:18:18 -0400
commit40a75840af82c667cdf95494e681d44e2e78e588 (patch)
tree06d6869e2f49fbc8c8cb92c66fad434d45896514 /src/mame/machine
parent11ad6ed232cb46366ae70bfa7717534d977f3e6a (diff)
m6502: Eliminate the disable_cache hack (nw)
Now that `direct_read_data` has been replaced with `memory_access_cache`, which is better equipped to deal with dynamic banking, there should be all the more reason to put an end to this pernicious antipattern.
Diffstat (limited to 'src/mame/machine')
-rw-r--r--src/mame/machine/deco222.h4
-rw-r--r--src/mame/machine/decocpu6.h2
-rw-r--r--src/mame/machine/decocpu7.h2
-rw-r--r--src/mame/machine/m6502_vtscr.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/deco222.h b/src/mame/machine/deco222.h
index ab39e7b5e36..e7a6d6b8990 100644
--- a/src/mame/machine/deco222.h
+++ b/src/mame/machine/deco222.h
@@ -13,7 +13,7 @@ public:
deco_222_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
- class mi_decrypt : public mi_default_normal {
+ class mi_decrypt : public mi_default {
public:
bool had_written;
@@ -41,7 +41,7 @@ public:
deco_c10707_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
- class mi_decrypt : public mi_default_normal {
+ class mi_decrypt : public mi_default {
public:
bool had_written;
diff --git a/src/mame/machine/decocpu6.h b/src/mame/machine/decocpu6.h
index b85cad2197b..3b46ec1093e 100644
--- a/src/mame/machine/decocpu6.h
+++ b/src/mame/machine/decocpu6.h
@@ -13,7 +13,7 @@ public:
deco_cpu6_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
- class mi_decrypt : public mi_default_normal {
+ class mi_decrypt : public mi_default {
public:
virtual ~mi_decrypt() {}
virtual uint8_t read_sync(uint16_t adr) override;
diff --git a/src/mame/machine/decocpu7.h b/src/mame/machine/decocpu7.h
index 68a1977ccd0..824f80834ff 100644
--- a/src/mame/machine/decocpu7.h
+++ b/src/mame/machine/decocpu7.h
@@ -13,7 +13,7 @@ public:
deco_cpu7_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
- class mi_decrypt : public mi_default_normal {
+ class mi_decrypt : public mi_default {
public:
bool had_written;
diff --git a/src/mame/machine/m6502_vtscr.h b/src/mame/machine/m6502_vtscr.h
index c7725399c21..4dd76ccb0d9 100644
--- a/src/mame/machine/m6502_vtscr.h
+++ b/src/mame/machine/m6502_vtscr.h
@@ -24,7 +24,7 @@ public:
void set_scramble(bool scr);
protected:
- class mi_decrypt : public mi_default_normal {
+ class mi_decrypt : public mi_default {
public:
bool m_scramble_en = false;