blob: 52c8f61d69f13408b443c959ad45bc36315c11f3 (
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
|
/*****************************************************************************
*
* Xerox AltoII parity task
*
* Copyright Juergen Buchmueller <pullmoll@t-online.de>
*
* Licenses: MAME, GPLv2
*
*****************************************************************************/
#include "alto2cpu.h"
//! called by the CPU when the parity task becomes active
void alto2_cpu_device::activate_part()
{
m_task_wakeup &= ~(1 << m_task);
}
//! parity task slots initialization
void alto2_cpu_device::init_part(int task)
{
m_active_callback[task] = &alto2_cpu_device::activate_part;
}
void alto2_cpu_device::exit_part()
{
// nothing to do yet
}
void alto2_cpu_device::reset_part()
{
// nothing to do yet
}
|