Previous 199869 Revisions Next

r22680 Sunday 5th May, 2013 at 23:29:36 UTC by Barry Rodewald
fmtowns: fixed RAM regression. (no whatsnew)
[src/mess/drivers]fmtowns.c
[src/mess/includes]fmtowns.h

trunk/src/mess/drivers/fmtowns.c
r22679r22680
26182618   m_cdrom = machine().device<cdrom_image_device>("cdrom");
26192619   m_cdda = machine().device("cdda");
26202620   m_scsi = machine().device<fmscsi_device>("scsi:fm");
2621   m_ram = m_ram;
26222621   m_ftimer = 0x00;
26232622   m_freerun_timer = 0x00;
26242623   m_nmi_mask = 0x00;
trunk/src/mess/includes/fmtowns.h
r22679r22680
8080      : driver_device(mconfig, type, tag),
8181         m_maincpu(*this, "maincpu"),
8282         m_speaker(*this, "speaker"),
83         m_ram(*this, RAM_TAG),
8384         m_nvram(*this, "nvram"),
8485         m_nvram16(*this, "nvram16")
8586   { }
r22679r22680
9798   device_t* m_cdda;
9899   required_device<speaker_sound_device> m_speaker;
99100   class fmscsi_device* m_scsi;
100   ram_device* m_ram;
101   required_device<ram_device> m_ram;
101102
102103   UINT16 m_ftimer;
103104   UINT16 m_freerun_timer;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team