summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/alto2/a2part.c
blob: ecf9da51ea536b3af00fdf98aff7247557ba40a4 (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 "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
}