mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
svn update test (nw)
This commit is contained in:
parent
bbfcc9df7f
commit
2ce69f7274
@ -15,7 +15,7 @@ Real workings of keyboard need to be understood and implemented.
|
||||
static ADDRESS_MAP_START(mc8020_mem, AS_PROGRAM, 8, mc80_state)
|
||||
ADDRESS_MAP_UNMAP_HIGH
|
||||
AM_RANGE(0x0000, 0x0bff) AM_ROM
|
||||
AM_RANGE(0x0c00, 0x0fff) AM_RAM AM_SHARE("p_videoram")// 1KB RAM ZRE
|
||||
AM_RANGE(0x0c00, 0x0fff) AM_RAM AM_SHARE("videoram")// 1KB RAM ZRE
|
||||
AM_RANGE(0x2000, 0x5fff) AM_ROM
|
||||
AM_RANGE(0x6000, 0xffff) AM_RAM
|
||||
ADDRESS_MAP_END
|
||||
|
@ -18,7 +18,7 @@ class mc80_state : public driver_device
|
||||
public:
|
||||
mc80_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag) ,
|
||||
m_p_videoram(*this, "p_videoram"){ }
|
||||
m_p_videoram(*this, "videoram"){ }
|
||||
|
||||
DECLARE_WRITE8_MEMBER(mc8030_zve_write_protect_w);
|
||||
DECLARE_WRITE8_MEMBER(mc8030_vis_w);
|
||||
|
Loading…
Reference in New Issue
Block a user