blob: f5feb4d8947ea010b10cb2276d83792d0504e544 (
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
|
// license:BSD-3-Clause
// copyright-holders:Juergen Buchmueller
/*****************************************************************************
*
* Xerox AltoII parity task
*
*****************************************************************************/
#include "emu.h"
#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)
{
}
void alto2_cpu_device::exit_part()
{
// nothing to do yet
}
void alto2_cpu_device::reset_part()
{
// nothing to do yet
}
|