From ab8f969618f372f22caa8aab3b2fa4637962235e Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 30 Aug 2015 14:41:11 +0200 Subject: [PATCH] fixed compile (nw) --- src/emu/cpu/t11/t11.h | 2 +- src/mess/drivers/dvk_kcgd.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/emu/cpu/t11/t11.h b/src/emu/cpu/t11/t11.h index c5044a7ad96..45c4ca86c5f 100644 --- a/src/emu/cpu/t11/t11.h +++ b/src/emu/cpu/t11/t11.h @@ -66,7 +66,7 @@ protected: virtual UINT32 disasm_max_opcode_bytes() const { return 6; } virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options); -private: +protected: address_space_config m_program_config; UINT16 c_initial_mode; diff --git a/src/mess/drivers/dvk_kcgd.c b/src/mess/drivers/dvk_kcgd.c index cc379085350..13d03f972b3 100644 --- a/src/mess/drivers/dvk_kcgd.c +++ b/src/mess/drivers/dvk_kcgd.c @@ -310,9 +310,9 @@ TIMER_DEVICE_CALLBACK_MEMBER(kcgd_state::scanline_callback) offset = BIT(m_video.status, KCGD_STATUS_PAGE) ? (KCGD_PAGE_1 >> 1) : (KCGD_PAGE_0 >> 1); - DBG_LOG(2,"scanline_cb", ("frame %d y %.3d page %d offset %04X *offset %04X\n", - m_screen->frame_number(), BIT(m_video.status, KCGD_STATUS_PAGE), - y, offset + y, m_videoram[offset + y])); +// DBG_LOG(2,"scanline_cb", ("frame %d y %.3d page %d offset %04X *offset %04X\n", +// m_screen->frame_number(), BIT(m_video.status, KCGD_STATUS_PAGE), +// y, offset + y, m_videoram[offset + y])); draw_scanline(&m_tmpbmp.pix16(y), m_videoram[offset + (KCGD_DISP_VERT-1) - y]); }