trunk/src/mess/video/isa_ega.c
| r21268 | r21269 | |
| 566 | 566 | |
| 567 | 567 | isa8_ega_device::isa8_ega_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : |
| 568 | 568 | device_t(mconfig, ISA8_EGA, "IBM Enhanced Graphics Adapter", tag, owner, clock), |
| 569 | | device_isa8_card_interface(mconfig, *this) |
| 569 | device_isa8_card_interface(mconfig, *this), |
| 570 | m_misc_output(0) |
| 570 | 571 | { |
| 571 | 572 | m_shortname = "ega"; |
| 572 | 573 | } |
| 573 | 574 | |
| 574 | 575 | isa8_ega_device::isa8_ega_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) : |
| 575 | 576 | device_t(mconfig, type, name, tag, owner, clock), |
| 576 | | device_isa8_card_interface(mconfig, *this) |
| 577 | device_isa8_card_interface(mconfig, *this), |
| 578 | m_misc_output(0) |
| 577 | 579 | { |
| 578 | 580 | } |
| 579 | 581 | |