trunk/src/mame/includes/stv.h
| r31182 | r31183 | |
| 15 | 15 | public: |
| 16 | 16 | saturn_state(const machine_config &mconfig, device_type type, const char *tag) |
| 17 | 17 | : driver_device(mconfig, type, tag), |
| 18 | m_rom(*this, "share6"), |
| 18 | 19 | m_workram_l(*this, "workram_l"), |
| 19 | 20 | m_workram_h(*this, "workram_h"), |
| 20 | 21 | m_sound_ram(*this, "sound_ram"), |
| r31182 | r31183 | |
| 29 | 30 | { |
| 30 | 31 | } |
| 31 | 32 | |
| 33 | required_shared_ptr<UINT32> m_rom; |
| 32 | 34 | required_shared_ptr<UINT32> m_workram_l; |
| 33 | 35 | required_shared_ptr<UINT32> m_workram_h; |
| 34 | 36 | required_shared_ptr<UINT16> m_sound_ram; |