~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/plus4/plus4acia.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-03-27 13:06:04 UTC
  • mfrom: (4 hoary)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050327130604-zodmv0i60dbbmcik
Tags: 1.16-3
Apply patch from Andreas Jochens <aj@andaco.de> to correct building on
AMD64 and GCC 4.x (closes: #300936)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * plus4acia.h - Definitions for a 6551 ACIA interface
 
3
 *
 
4
 * Written by
 
5
 *  Andre' Fachat <fachat@physik.tu-chemnitz.de>
 
6
 *  Andreas Boose <viceteam@t-online.de>
 
7
 *
 
8
 * This file is part of VICE, the Versatile Commodore Emulator.
 
9
 * See README for copyright notice.
 
10
 *
 
11
 *  This program is free software; you can redistribute it and/or modify
 
12
 *  it under the terms of the GNU General Public License as published by
 
13
 *  the Free Software Foundation; either version 2 of the License, or
 
14
 *  (at your option) any later version.
 
15
 *
 
16
 *  This program is distributed in the hope that it will be useful,
 
17
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 *  GNU General Public License for more details.
 
20
 *
 
21
 *  You should have received a copy of the GNU General Public License
 
22
 *  along with this program; if not, write to the Free Software
 
23
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
24
 *  02111-1307  USA.
 
25
 *
 
26
 */
 
27
 
 
28
#ifndef _PLUS4ACIA_H
 
29
#define _PLUS4ACIA_H
 
30
 
 
31
#include "types.h"
 
32
 
 
33
struct snapshot_s;
 
34
 
 
35
extern void acia_init(void);
 
36
extern BYTE REGPARM1 acia_read(WORD a);
 
37
extern BYTE REGPARM1 acia_peek(WORD a);
 
38
extern void REGPARM2 acia_store(WORD a, BYTE b);
 
39
extern void acia_reset(void);
 
40
 
 
41
extern int acia_cmdline_options_init(void);
 
42
extern int acia_resources_init(void);
 
43
 
 
44
extern int acia_snapshot_read_module(struct snapshot_s *);
 
45
extern int acia_snapshot_write_module(struct snapshot_s *);
 
46
 
 
47
#endif
 
48