trunk/src/emu/device.h
| r22096 | r22097 | |
| 157 | 157 | const char *name() const { return m_name; } |
| 158 | 158 | const char *shortname() const { return m_shortname; } |
| 159 | 159 | const char *searchpath() const { return m_searchpath; } |
| 160 | const char *source() const { return m_source; } |
| 160 | 161 | device_t *owner() const { return m_owner; } |
| 161 | 162 | device_t *next() const { return m_next; } |
| 162 | 163 | UINT32 configured_clock() const { return m_configured_clock; } |
| r22096 | r22097 | |
| 297 | 298 | astring m_name; // name of the device |
| 298 | 299 | astring m_shortname; // short name of the device |
| 299 | 300 | astring m_searchpath; // search path, used for media loading |
| 301 | astring m_source; // device source file name |
| 300 | 302 | |
| 301 | 303 | // device relationships |
| 302 | 304 | device_t * m_owner; // device that owns us |