-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrdevice.h
41 lines (36 loc) · 1.38 KB
/
rdevice.h
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
33
34
35
36
37
38
39
40
41
/*
* rdevice.h - Atari850 emulation header file
*
* Copyright (c) ???? Tom Hunt, Chris Martin
* Copyright (c) 2003,2008 Atari800 development team (see DOC/CREDITS)
*
* This file is part of the Atari800 emulator project which emulates
* the Atari 400, 800, 800XL, 130XE, and 5200 8-bit computers.
*
* Atari800 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Atari800 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Atari800; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef RDEVICE_H_
#define RDEVICE_H_
extern void RDevice_OPEN(void);
extern void RDevice_CLOS(void);
extern void RDevice_READ(void);
extern void RDevice_WRIT(void);
extern void RDevice_STAT(void);
extern void RDevice_SPEC(void);
extern void RDevice_INIT(void);
extern int RDevice_serial_enabled;
extern char RDevice_serial_device[];
extern void RDevice_Exit(void);
#endif /* RDEVICE_H_ */