~lgb/x-emulators/dev

« back to all changes in this revision

Viewing changes to targets/ep128/epnet.h

  • Committer: GitHub
  • Author(s): LGB
  • Date: 2020-06-09 11:33:47 UTC
  • mfrom: (265.1.101)
  • Revision ID: git-v1:527c2b021966f6f9f2444c23d6402c141d1c19d2
Merge pull request #116 from lgblgblgb/dev

Merge dev stage into master

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Xep128: Minimalistic Enterprise-128 emulator with focus on "exotic" hardware
 
2
   Copyright (C)2015,2016,2020 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
 
3
   http://xep128.lgb.hu/
 
4
 
 
5
This program is free software; you can redistribute it and/or modify
 
6
it under the terms of the GNU General Public License as published by
 
7
the Free Software Foundation; either version 2 of the License, or
 
8
(at your option) any later version.
 
9
 
 
10
This program is distributed in the hope that it will be useful,
 
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
GNU General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with this program; if not, write to the Free Software
 
17
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
18
 
 
19
#ifndef XEMU_EP128_EPNET_H_INCLUDED
 
20
#define XEMU_EP128_EPNET_H_INCLUDED
 
21
#ifdef CONFIG_EPNET_SUPPORT
 
22
 
 
23
extern Uint8 epnet_read_cpu_port  ( unsigned int port );
 
24
extern void  epnet_write_cpu_port ( unsigned int port, Uint8 data );
 
25
extern void  epnet_init ( void (*cb)(int) );
 
26
extern void  epnet_uninit ( void );
 
27
 
 
28
#endif
 
29
#endif