diff options
author | 2015-05-28 17:03:36 -0500 | |
---|---|---|
committer | 2015-05-28 17:03:36 -0500 | |
commit | 4332164659ec242c69d3d314a523917955fb9d1c (patch) | |
tree | 225c1627dec06a16feddcfe2cb48a00f266773e6 /src/mess/drivers/nascom1.c | |
parent | e2f8eed5b663ff0902674fca16f2d2daae269bd1 (diff) |
compile fixes for GCC5.1.1 win64 and CPP11 mode.. requested by mingw team to test LTO fixes. please add #ifdefs if 64 bit printf does not work for you
Diffstat (limited to 'src/mess/drivers/nascom1.c')
-rw-r--r-- | src/mess/drivers/nascom1.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mess/drivers/nascom1.c b/src/mess/drivers/nascom1.c index 446b54fee60..ac1bde10eb7 100644 --- a/src/mess/drivers/nascom1.c +++ b/src/mess/drivers/nascom1.c @@ -72,7 +72,8 @@ public: DECLARE_READ8_MEMBER(nascom1_port_01_r); DECLARE_WRITE8_MEMBER(nascom1_port_01_w); DECLARE_READ8_MEMBER(nascom1_port_02_r); - virtual DECLARE_DRIVER_INIT(nascom); + // FIXME + /*virtual*/ DECLARE_DRIVER_INIT(nascom); void screen_update(bitmap_ind16 &bitmap, const rectangle &cliprect, int char_height); DECLARE_READ8_MEMBER(nascom1_hd6402_si); DECLARE_WRITE8_MEMBER(nascom1_hd6402_so); @@ -112,9 +113,9 @@ public: DECLARE_WRITE_LINE_MEMBER(ram_disable_w); DECLARE_WRITE_LINE_MEMBER(ram_disable_cpm_w); - - virtual DECLARE_DRIVER_INIT(nascom); - virtual DECLARE_DRIVER_INIT(nascomc); + // FIXME + /*virtual*/ DECLARE_DRIVER_INIT(nascom); + /*virtual*/ DECLARE_DRIVER_INIT(nascomc); UINT32 screen_update_nascom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); int load_cart(device_image_interface &image, generic_slot_device *slot, int slot_id); |