blob: c8578c5a1baf1b65c02717841474c9602b78a3cb (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Bryan McPhail
/***************************************************************************
Midway MCR-68k system
***************************************************************************/
#include "emu.h"
#include "audio/midway.h"
#include "includes/mcr68.h"
#define VERBOSE 0
/*************************************
*
* Generic MCR/68k machine initialization
*
*************************************/
void mcr68_state::machine_start()
{
m_493_on_timer = timer_alloc(FUNC(mcr68_state::mcr68_493_callback), this);
m_493_off_timer = timer_alloc(FUNC(mcr68_state::mcr68_493_off_callback), this);
}
void mcr68_state::machine_reset()
{
m_493_on_timer->adjust(attotime::never);
m_493_off_timer->adjust(attotime::never);
}
/*************************************
*
* Scanline callback
*
*************************************/
TIMER_DEVICE_CALLBACK_MEMBER( mcr68_state::scanline_cb )
{
// VSYNC
if (param == 0)
{
if (VERBOSE)
logerror("--- VBLANK ---\n");
m_ptm->set_c1(0);
m_ptm->set_c1(1);
/* also set a timer to generate the 493 signal at a specific time before the next VBLANK */
/* the timing of this is crucial for Blasted and Tri-Sports, which check the timing of */
/* VBLANK and 493 using counter 2 */
m_493_on_timer->adjust(attotime::from_hz(30) - m_timing_factor);
}
// HSYNC
m_ptm->set_c3(0);
m_ptm->set_c3(1);
}
/*************************************
*
* MCR/68k interrupt central
*
*************************************/
TIMER_CALLBACK_MEMBER(mcr68_state::mcr68_493_off_callback)
{
m_maincpu->set_input_line(1, CLEAR_LINE);
}
TIMER_CALLBACK_MEMBER(mcr68_state::mcr68_493_callback)
{
m_maincpu->set_input_line(1, ASSERT_LINE);
m_493_off_timer->adjust(m_screen->scan_period());
if (VERBOSE)
logerror("--- (INT1) ---\n");
}
|