summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2018-05-16 13:53:58 +0300
committer Curt Coder <curtcoder@mail.com>2018-05-16 13:54:09 +0300
commit8e796a2075415427491a541b75884aea6e21f6a9 (patch)
tree9484f734c401f58c254be62412cf50e19f07a95b /src/mame/includes
parent3dc30bab100a96c3072cbee6da12b7a7f0b3476a (diff)
abc806: Fixed memory banking allowing CP/M to boot. [Curt Coder]
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/abc80x.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/abc80x.h b/src/mame/includes/abc80x.h
index dc4fa94ed29..81405a0d100 100644
--- a/src/mame/includes/abc80x.h
+++ b/src/mame/includes/abc80x.h
@@ -288,9 +288,12 @@ public:
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void bankswitch();
+ void read_pal_p4(offs_t offset, bool m1l, bool xml, offs_t &m, bool &romd, bool &ramd, bool &hre, bool &vr);
void hr_update(bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ DECLARE_READ8_MEMBER( read );
+ DECLARE_WRITE8_MEMBER( write );
+ DECLARE_READ8_MEMBER( m1_r ) override;
DECLARE_READ8_MEMBER( mai_r );
DECLARE_WRITE8_MEMBER( mao_w );
DECLARE_WRITE8_MEMBER( hrs_w );