svn update test (nw)

This commit is contained in:
Robbbert 2012-08-21 22:50:56 +00:00
parent bbfcc9df7f
commit 2ce69f7274
2 changed files with 2 additions and 2 deletions

View File

@ -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) static ADDRESS_MAP_START(mc8020_mem, AS_PROGRAM, 8, mc80_state)
ADDRESS_MAP_UNMAP_HIGH ADDRESS_MAP_UNMAP_HIGH
AM_RANGE(0x0000, 0x0bff) AM_ROM 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(0x2000, 0x5fff) AM_ROM
AM_RANGE(0x6000, 0xffff) AM_RAM AM_RANGE(0x6000, 0xffff) AM_RAM
ADDRESS_MAP_END ADDRESS_MAP_END

View File

@ -18,7 +18,7 @@ class mc80_state : public driver_device
public: public:
mc80_state(const machine_config &mconfig, device_type type, const char *tag) mc80_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, 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_zve_write_protect_w);
DECLARE_WRITE8_MEMBER(mc8030_vis_w); DECLARE_WRITE8_MEMBER(mc8030_vis_w);