blob: 077f4efe3a2c801449269e04bf1b00c65e09307f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// license:BSD-3-Clause
// copyright-holders:Brad Oliver,Fabio Priuli
/***************************************************************************
video/nes.c
Routines to control the unique NES video hardware/PPU.
***************************************************************************/
#include "emu.h"
#include "includes/nes.h"
void nes_state::video_reset()
{
m_ppu->set_vidaccess_callback(ppu2c0x_vidaccess_delegate(FUNC(nes_state::nes_ppu_vidaccess),this));
}
void nes_state::video_start()
{
m_last_frame_flip = 0;
}
PALETTE_INIT_MEMBER(nes_state, nes)
{
m_ppu->init_palette(palette, 0);
}
/***************************************************************************
Display refresh
***************************************************************************/
UINT32 nes_state::screen_update_nes(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
// render the ppu
m_ppu->render(bitmap, 0, 0, 0, 0);
// if this is a disk system game, check for the flip-disk key
if ((m_cartslot && m_cartslot->exists() && (m_cartslot->get_pcb_id() == STD_DISKSYS)) // first scenario = disksys in m_cartslot (= famicom)
|| m_disk) // second scenario = disk via fixed internal disk option (fds & famitwin)
{
if (m_io_disksel)
{
// latch this input so it doesn't go at warp speed
if ((m_io_disksel->read() & 0x01) && (!m_last_frame_flip))
{
if (m_disk)
m_disk->disk_flip_side();
else
m_cartslot->disk_flip_side();
m_last_frame_flip = 1;
}
if (!(m_io_disksel->read() & 0x01))
m_last_frame_flip = 0;
}
}
return 0;
}
|