Previous 199869 Revisions Next

r40552 Sunday 30th August, 2015 at 12:41:11 UTC by Miodrag Milanović
fixed compile (nw)
[src/emu/cpu/t11]t11.h
[src/mess/drivers]dvk_kcgd.c

trunk/src/emu/cpu/t11/t11.h
r249063r249064
6666   virtual UINT32 disasm_max_opcode_bytes() const { return 6; }
6767   virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
6868
69private:
69protected:
7070   address_space_config m_program_config;
7171
7272   UINT16 c_initial_mode;
trunk/src/mess/drivers/dvk_kcgd.c
r249063r249064
310310
311311   offset = BIT(m_video.status, KCGD_STATUS_PAGE) ? (KCGD_PAGE_1 >> 1) : (KCGD_PAGE_0 >> 1);
312312
313   DBG_LOG(2,"scanline_cb", ("frame %d y %.3d page %d offset %04X *offset %04X\n",
314      m_screen->frame_number(), BIT(m_video.status, KCGD_STATUS_PAGE),
315      y, offset + y, m_videoram[offset + y]));
313//   DBG_LOG(2,"scanline_cb", ("frame %d y %.3d page %d offset %04X *offset %04X\n",
314//      m_screen->frame_number(), BIT(m_video.status, KCGD_STATUS_PAGE),
315//      y, offset + y, m_videoram[offset + y]));
316316
317317   draw_scanline(&m_tmpbmp.pix16(y), m_videoram[offset + (KCGD_DISP_VERT-1) - y]);
318318}


Previous 199869 Revisions Next


© 1997-2024 The MAME Team