trunk/src/mess/video/k1ge.c
r22012 | r22013 | |
894 | 894 | const device_type K1GE = &device_creator<k1ge_device>; |
895 | 895 | |
896 | 896 | k1ge_device::k1ge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
897 | | : device_t(mconfig, K1GE, "", tag, owner, clock) |
| 897 | : device_t(mconfig, K1GE, "K1GE Monochrome Graphics + LCD", tag, owner, clock) |
898 | 898 | { |
899 | 899 | m_token = global_alloc_clear(k1ge_t); |
900 | 900 | } |
r22012 | r22013 | |
937 | 937 | const device_type K2GE = &device_creator<k2ge_device>; |
938 | 938 | |
939 | 939 | k2ge_device::k2ge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
940 | | : k1ge_device(mconfig, K2GE, "", tag, owner, clock) |
| 940 | : k1ge_device(mconfig, K2GE, "K2GE Color Graphics + LCD", tag, owner, clock) |
941 | 941 | { |
942 | 942 | } |
943 | 943 | |