1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
// uba.c - Complete listing of Unibus devices
//
// Copyright (c) 2002, Timothy M. Stark
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// TIMOTHY M STARK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// Except as contained in this notice, the name of Timothy M Stark shall not
// be used in advertising or otherwise to promote the sale, use or other
// dealings in this Software without prior written authorization from
// Timothy M Stark.
#include "emu/defs.h"
#include "dev/defs.h"
// External device structure from other files
extern DEVICE bdv_Device;
extern DEVICE dhu_Device;
extern DEVICE dhv_Device;
extern DEVICE dhq_Device;
extern DEVICE dl_Device;
extern DEVICE dz_Device;
extern DEVICE dzv_Device;
extern DEVICE kdf_Device;
extern DEVICE kwl_Device;
extern DEVICE mrv_Device;
extern DEVICE qna_Device;
extern DEVICE lqa_Device;
extern DEVICE sqa_Device;
extern DEVICE rh_Device;
extern DEVICE rl_Device;
extern DEVICE rlv_Device;
extern DEVICE rq_Device;
extern DEVICE lp_Device;
extern DEVICE lp20_Device;
extern DEVICE tcu_Device;
extern DEVICE ts_Device;
extern DEVICE tsv_Device;
// Unibus/Qbus Devices for KS10, PDP11 and VAX series.
DEVICE *uq_Devices[] = {
&bdv_Device, // BDV11 - Boot ROM Device
&dhq_Device, // DHQ11 - DHV/DHU Terminal Interface
&dhu_Device, // DHU11 - Unibus Terminal Interface
&dhv_Device, // DHV11 - Qbus Terminal Interface
&dl_Device, // DL11 - Serial Line Interface (Console TTY)
&dz_Device, // DZ11 - Unibus Terminal Interface
&dzv_Device, // DZV11 - Qbus Terminal Interface
&kdf_Device, // KDF11 - Boot ROM Device
&kwl_Device, // KW11L - Line Clock
&mrv_Device, // MRV11 - Boot ROM Device
&qna_Device, // DEQNA - Ethernet Interface
&lqa_Device, // DELQA - Ethernet Interface
&sqa_Device, // DESQA - Ethernet Interface
&lp_Device, // LP11 - Line Printer Interface
&lp20_Device, // LP20 - Line Printer Interface for KS10 machines
&rh_Device, // RH11 - MASSBUS Disk/Tape Controller
&rl_Device, // RL11 - Unibus RL01/RL02 Disk Subsystems
&rlv_Device, // RLV11 - Qbus RL01/RL02 Disk Subsystems
&rq_Device, // RQDX3 - MSCP Disk Controller
&tcu_Device, // TCU - Time Clock Unit
&ts_Device, // TS11 - Magtape Drive
&tsv_Device, // TSV05 - Magtape Drive
NULL // Terminator
};
int uq_GetAddr(UNIT *uptr, uint32 *csrAddr, uint32 *mskAddr,
uint32 *vecAddr, uint32 *ipl, int argc, char **argv)
{
if (argc < 4) {
printf("%s: Usage: create %s: %s ... <csr> <mask> <vector> <ipl>\n",
uptr->devName, uptr->devName, uptr->keyName);
return UQ_ERROR;
}
sscanf(argv[0], "%o", csrAddr);
sscanf(argv[1], "%o", mskAddr);
sscanf(argv[2], "%o", vecAddr);
sscanf(argv[3], "%d", ipl);
printf("%s: CSR = %06o, MASK = %02o, VEC = %03o, IPL = %d\n",
uptr->devName, *csrAddr, *mskAddr, *vecAddr, *ipl);
return UQ_OK;
}
|