trunk/src/mess/video/kyocera.c
| r17891 | r17892 | |
| 6 | 6 | palette_set_color(machine(), 1, MAKE_RGB(92, 83, 88)); |
| 7 | 7 | } |
| 8 | 8 | |
| 9 | PALETTE_INIT_MEMBER(tandy200_state,tandy200) |
| 10 | { |
| 11 | palette_set_color(machine(), 0, MAKE_RGB(138, 146, 148)); |
| 12 | palette_set_color(machine(), 1, MAKE_RGB(92, 83, 88)); |
| 13 | } |
| 14 | |
| 9 | 15 | UINT32 kc85_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) |
| 10 | 16 | { |
| 11 | 17 | m_lcdc0->screen_update(screen, bitmap, cliprect); |
| r17891 | r17892 | |
| 77 | 83 | MCFG_DEFAULT_LAYOUT(layout_lcd) |
| 78 | 84 | |
| 79 | 85 | MCFG_PALETTE_LENGTH(2) |
| 80 | | MCFG_PALETTE_INIT_OVERRIDE(kc85_state,kc85) |
| 86 | MCFG_PALETTE_INIT_OVERRIDE(tandy200_state,tandy200) |
| 81 | 87 | |
| 82 | 88 | MCFG_HD61830_ADD(HD61830_TAG, XTAL_4_9152MHz/2/2, lcdc_intf) |
| 83 | 89 | MCFG_DEVICE_ADDRESS_MAP(AS_0, tandy200_lcdc) |