blob: 84d59dd60fad9651e1876cdfe46fd56f35a5cb58 [file] [log] [blame] [raw]
Mark Pizzolatoe2524e72014-09-17 17:31:40 -07001/* sage_ieee.c: IEEE 488 device for Sage-II-system
2
3 Copyright (c) 2009-2010 Holger Veit
4
5 Permission is hereby granted, free of charge, to any person obtaining a
6 copy of this software and associated documentation files (the "Software"),
7 to deal in the Software without restriction, including without limitation
8 the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 and/or sell copies of the Software, and to permit persons to whom the
10 Software is furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 Holger Veit BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 Except as contained in this notice, the name of Holger Veit et al shall not be
23 used in advertising or otherwise to promote the sale, use or other dealings
24 in this Software without prior written authorization from Holger Veit et al.
25
26 12-Oct-09 HV Initial version
27*/
28
29/* N O T Y E T I M P L E M E N T E D ! ! ! */
30#include "sage_defs.h"
31
32#if 0
33static t_stat sageieee_reset(DEVICE* dptr);
34
35UNIT sageieee_unit = {
Mark Pizzolato66dba792015-03-30 10:24:24 -070036 UDATA (NULL, UNIT_FIX | UNIT_BINK, 0)
Mark Pizzolatoe2524e72014-09-17 17:31:40 -070037};
38
39REG sageieee_reg[] = {
Mark Pizzolato66dba792015-03-30 10:24:24 -070040 { NULL }
Mark Pizzolatoe2524e72014-09-17 17:31:40 -070041};
42
43static MTAB sageieee_mod[] = {
Mark Pizzolato66dba792015-03-30 10:24:24 -070044 { 0 }
Mark Pizzolatoe2524e72014-09-17 17:31:40 -070045};
46
47DEVICE sageieee_dev = {
Mark Pizzolato66dba792015-03-30 10:24:24 -070048 "IEEE", &sageieee_unit, sageieee_reg, sageieee_mod,
49 1, 16, 32, 2, 16, 16,
50 NULL, NULL, &sageieee_reset,
51 NULL, NULL, NULL,
52 NULL, DEV_DISABLE|DEV_DIS, 0,
53 NULL, NULL, NULL
Mark Pizzolatoe2524e72014-09-17 17:31:40 -070054};
55
56static t_stat sageieee_reset(DEVICE* dptr)
57{
Mark Pizzolato66dba792015-03-30 10:24:24 -070058 printf("sageieee_reset\n");
59 return SCPE_OK;
Mark Pizzolatoe2524e72014-09-17 17:31:40 -070060}
61
62#endif