1 /* 2 * Copyright (c) 1982, 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 * 7 * @(#)hpibvar.h 8.1 (Berkeley) 06/10/93 8 */ 9 10 #define HPIBA 32 11 #define HPIBB 1 12 #define HPIBC 8 13 #define HPIBA_BA 21 14 #define HPIBC_BA 30 15 16 #define CSA_BA 0x1F 17 18 #define C_DCL 20 19 #define C_LAG 32 20 #define C_UNL 63 21 #define C_TAG 64 22 #define C_UNA 94 23 #define C_UNT 95 24 #define C_SCG 96 25 26 struct hpib_softc { 27 char sc_alive; 28 char sc_type; 29 int sc_ba; 30 char *sc_addr; 31 }; 32 33 extern struct hpib_softc hpib_softc[]; 34