Mark Pizzolato | e2524e7 | 2014-09-17 17:31:40 -0700 | [diff] [blame] | 1 | /* 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
|
| 33 | static t_stat sageieee_reset(DEVICE* dptr);
|
| 34 |
|
| 35 | UNIT sageieee_unit = {
|
Mark Pizzolato | 66dba79 | 2015-03-30 10:24:24 -0700 | [diff] [blame] | 36 | UDATA (NULL, UNIT_FIX | UNIT_BINK, 0)
|
Mark Pizzolato | e2524e7 | 2014-09-17 17:31:40 -0700 | [diff] [blame] | 37 | };
|
| 38 |
|
| 39 | REG sageieee_reg[] = {
|
Mark Pizzolato | 66dba79 | 2015-03-30 10:24:24 -0700 | [diff] [blame] | 40 | { NULL }
|
Mark Pizzolato | e2524e7 | 2014-09-17 17:31:40 -0700 | [diff] [blame] | 41 | };
|
| 42 |
|
| 43 | static MTAB sageieee_mod[] = {
|
Mark Pizzolato | 66dba79 | 2015-03-30 10:24:24 -0700 | [diff] [blame] | 44 | { 0 }
|
Mark Pizzolato | e2524e7 | 2014-09-17 17:31:40 -0700 | [diff] [blame] | 45 | };
|
| 46 |
|
| 47 | DEVICE sageieee_dev = {
|
Mark Pizzolato | 66dba79 | 2015-03-30 10:24:24 -0700 | [diff] [blame] | 48 | "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 Pizzolato | e2524e7 | 2014-09-17 17:31:40 -0700 | [diff] [blame] | 54 | };
|
| 55 |
|
| 56 | static t_stat sageieee_reset(DEVICE* dptr)
|
| 57 | {
|
Mark Pizzolato | 66dba79 | 2015-03-30 10:24:24 -0700 | [diff] [blame] | 58 | printf("sageieee_reset\n");
|
| 59 | return SCPE_OK;
|
Mark Pizzolato | e2524e7 | 2014-09-17 17:31:40 -0700 | [diff] [blame] | 60 | }
|
| 61 |
|
| 62 | #endif
|