blob: 220a7591bb624aaeb10c58945b3117e84444da18 (
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
|
// license:BSD-3-Clause
// copyright-holders:Juergen Buchmueller
/*****************************************************************************
*
* Xerox AltoII disk sector task
*
*****************************************************************************/
#include "emu.h"
#include "alto2cpu.h"
//! f1_ksec_block early: block the disk sector task
void alto2_cpu_device::f1_early_ksec_block()
{
LOG((this,LOG_KSEC,2," BLOCK %s\n", task_name(m_task)));
disk_block(m_task);
}
//! disk sector task slot initialization
void alto2_cpu_device::init_ksec(int task)
{
m_task_wakeup |= 1 << task;
}
void alto2_cpu_device::exit_ksec()
{
// nothing to do yet
}
void alto2_cpu_device::reset_ksec()
{
// nothing to do yet
}
|