summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/hp48.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/hp48.h')
-rw-r--r--src/mess/includes/hp48.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/includes/hp48.h b/src/mess/includes/hp48.h
index 10b9c8106f3..109b86b8a32 100644
--- a/src/mess/includes/hp48.h
+++ b/src/mess/includes/hp48.h
@@ -46,7 +46,8 @@ public:
hp48_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
- m_dac(*this, "dac") { }
+ m_dac(*this, "dac"),
+ m_palette(*this, "palette") { }
UINT8 *m_videoram;
UINT8 m_io[64];
@@ -90,6 +91,7 @@ public:
void hp48_apply_modules();
required_device<cpu_device> m_maincpu;
required_device<dac_device> m_dac;
+ required_device<palette_device> m_palette;
void hp48_pulse_irq( int irq_line);
void hp48_rs232_start_recv_byte( UINT8 data );
void hp48_rs232_send_byte( );