summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/pgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/pgc.h')
-rw-r--r--src/devices/bus/isa/pgc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/pgc.h b/src/devices/bus/isa/pgc.h
index b14ea6e5797..43bc42e2b85 100644
--- a/src/devices/bus/isa/pgc.h
+++ b/src/devices/bus/isa/pgc.h
@@ -41,7 +41,7 @@ protected:
private:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- DECLARE_WRITE_LINE_MEMBER(vblank_irq);
+ void vblank_irq(int state);
IRQ_CALLBACK_MEMBER(irq_callback);
void vram_w(offs_t offset, uint8_t data);
@@ -60,8 +60,8 @@ private:
required_device<i8088_cpu_device> m_cpu;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
+ required_shared_ptr<uint8_t> m_commarea;
- uint8_t *m_commarea;
std::unique_ptr<uint8_t[]> m_vram;
std::unique_ptr<uint8_t[]> m_eram;
uint8_t m_stateparam[16];