blob: 0bc8583bbbca45d67ea5df14a5a5b25ee03dddec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// license:BSD-3-Clause
// copyright-holders:Juergen Buchmueller
/*****************************************************************************
*
* Xerox AltoII parity task (PART)
*
*****************************************************************************/
#ifdef ALTO2_DEFINE_CONSTANTS
#else // ALTO2_DEFINE_CONSTANTS
#ifndef _A2PART_H_
#define _A2PART_H_
void activate_part();
void init_part(int task = task_part); //!< initialize the parity task
void exit_part(); //!< deinitialize the parity task
void reset_part(); //!< reset the parity task
#endif // _A2PART_H_
#endif // ALTO2_DEFINE_CONSTANTS
|