RESTRICTION: The PDP-15 FPP is only partially debugged. Do NOT enable this feature for normal operations. WARNING: The core simulator files (scp.c, sim_*.c) have been reorganized. Unzip V3.2-0 to an empty directory before attempting to compile the source. IMPORTANT: If you are compiling for UNIX, please read the notes for Ethernet very carefully. You may need to download a new version of the pcap library, or make changes to the makefile, to get Ethernet support to work. 1. New Features in 3.2-0 1.1 SCP and libraries - Added SHOW <device> RADIX command. - Added SHOW <device> MODIFIERS command. - Added SHOW <device> NAMES command. - Added SET/SHOW <device> DEBUG command. - Added sim_vm_parse_addr and sim_vm_fprint_addr optional interfaces. - Added REG_VMAD flag. - Split SCP into separate libraries for easier modification. - Added more room to the device and unit flag fields. - Changed terminal multiplexor library to support unlimited. number of async lines. 1.2 All DECtapes - Added STOP_EOR flag to enable end-of-reel error stop - Added device debug support. 1.3 Nova and Eclipse - Added QTY and ALM multiplexors (Bruce Ray). 1.4 LGP-30 - Added LGP-30/LGP-21 simulator. 1.5 PDP-11 - Added format, address increment inhibit, transfer overrun detection to RK. - Added device debug support to HK, RP, TM, TQ, TS. - Added DEUNA/DELUA (XU) support (Dave Hittner). - Add DZ per-line logging. 1.6 18b PDP's - Added support for 1-4 (PDP-9)/1-16 (PDP-15) additional terminals. 1.7 PDP-10 - Added DEUNA/DELUA (XU) support (Dave Hittner). 1.8 VAX - Added extended memory to 512MB (Mark Pizzolato). - Added RXV21 support. 2. Bugs Fixed in 3.2-0 2.1 SCP - Fixed double logging of SHOW BREAK (found by Mark Pizzolato). - Fixed implementation of REG_VMIO. 2.2 Nova and Eclipse - Fixed device enable/disable support (found by Bruce Ray). 2.3 PDP-1 - Fixed bug in LOAD (found by Mark Crispin). 2.4 PDP-10 - Fixed bug in floating point unpack. - Fixed bug in FIXR (found by Phil Stone, fixed by Chris Smith). 2.6 PDP-11 - Fixed bug in RQ interrupt control (found by Tom Evans). 2.6 PDP-18B - Fixed bug in PDP-15 XVM g_mode implementation. - Fixed bug in PDP-15 indexed address calculation. - Fixed bug in PDP-15 autoindexed address calculation. - Fixed bugs in FPP-15 instruction decode. - Fixed clock response to CAF. - Fixed bug in hardware read-in mode bootstrap. - Fixed PDP-15 XVM instruction decoding errors. 2.7 VAX - Fixed PC read fault in EXTxV. - Fixed PC write fault in INSV.
143 lines
4.5 KiB
C
143 lines
4.5 KiB
C
/* pdp8_tsc.c: PDP-8 ETOS timesharing option board (TSC8-75)
|
||
|
||
Copyright (c) 2003-2004, Robert M Supnik
|
||
|
||
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
|
||
ROBERT M SUPNIK 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 Robert M Supnik shall not
|
||
be used in advertising or otherwise to promote the sale, use or other dealings
|
||
in this Software without prior written authorization from Robert M Supnik.
|
||
|
||
This module is based on Bernhard Baehr's PDP-8/E simulator
|
||
|
||
PDP-8/E Simulator Source Code
|
||
|
||
Copyright ) 2001-2003 Bernhard Baehr
|
||
|
||
TSC8iots.c - IOTs for the TSC8-75 Board plugin
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
||
tsc TSC8-75 option board
|
||
*/
|
||
|
||
#include "pdp8_defs.h"
|
||
|
||
extern int32 int_req;
|
||
extern int32 SF;
|
||
extern int32 tsc_ir; /* "ERIOT" */
|
||
extern int32 tsc_pc; /* "ERTB" */
|
||
extern int32 tsc_cdf; /* "ECDF" */
|
||
extern int32 tsc_enb; /* enable */
|
||
|
||
#define UNIT_V_SN699 (UNIT_V_UF + 0) /* SN 699 or above */
|
||
#define UNIT_SN699 (1 << UNIT_V_SN699)
|
||
|
||
DEVICE tsc_dev;
|
||
int32 tsc (int32 IR, int32 AC);
|
||
t_stat tsc_reset (DEVICE *dptr);
|
||
|
||
/* TSC data structures
|
||
|
||
tsc_dev TSC device descriptor
|
||
tsc_unit TSC unit descriptor
|
||
tsc_reg TSC register list
|
||
*/
|
||
|
||
DIB tsc_dib = { DEV_TSC, 1, { &tsc } };
|
||
|
||
UNIT tsc_unit = { UDATA (NULL, UNIT_SN699, 0) };
|
||
|
||
REG tsc_reg[] = {
|
||
{ ORDATA (IR, tsc_ir, 12) },
|
||
{ ORDATA (PC, tsc_pc, 12) },
|
||
{ FLDATA (CDF, tsc_cdf, 0) },
|
||
{ FLDATA (ENB, tsc_enb, 0) },
|
||
{ FLDATA (INT, int_req, INT_V_TSC) },
|
||
{ NULL } };
|
||
|
||
MTAB tsc_mod[] = {
|
||
{ UNIT_SN699, UNIT_SN699, "ESME", "ESME", NULL },
|
||
{ UNIT_SN699, 0, "no ESME", "NOESME", NULL },
|
||
{ 0 } };
|
||
|
||
DEVICE tsc_dev = {
|
||
"TSC", &tsc_unit, tsc_reg, tsc_mod,
|
||
1, 10, 31, 1, 8, 8,
|
||
NULL, NULL, &tsc_reset,
|
||
NULL, NULL, NULL,
|
||
&tsc_dib, DEV_DISABLE | DEV_DIS };
|
||
|
||
/* IOT routine */
|
||
|
||
int32 tsc (int32 IR, int32 AC)
|
||
{
|
||
switch (IR & 07) { /* decode IR<9:11> */
|
||
case 0: /* ETDS */
|
||
tsc_enb = 0; /* disable int req */
|
||
int_req = int_req & ~INT_TSC; /* clear flag */
|
||
break;
|
||
case 1: /* ESKP */
|
||
return (int_req & INT_TSC)? IOT_SKP + AC: AC; /* skip on int req */
|
||
case 2: /* ECTF */
|
||
int_req = int_req & ~INT_TSC; /* clear int req */
|
||
break;
|
||
case 3: /* ECDF */
|
||
AC = AC | ((tsc_ir >> 3) & 07); /* read "ERIOT"<6:8> */
|
||
if (tsc_cdf) AC = AC | IOT_SKP; /* if cdf, skip */
|
||
tsc_cdf = 0;
|
||
break;
|
||
case 4: /* ERTB */
|
||
return tsc_pc;
|
||
case 5: /* ESME */
|
||
if (tsc_unit.flags & UNIT_SN699) { /* enabled? */
|
||
if (tsc_cdf && ((tsc_ir & 070) >> 3) == (SF & 07)) {
|
||
AC = AC | IOT_SKP;
|
||
tsc_cdf = 0; } }
|
||
break;
|
||
case 6: /* ERIOT */
|
||
return tsc_ir;
|
||
case 7: /* ETEN */
|
||
tsc_enb = 1;
|
||
break; } /* end switch */
|
||
return AC;
|
||
}
|
||
|
||
/* Reset routine */
|
||
|
||
t_stat tsc_reset (DEVICE *dptr)
|
||
{
|
||
tsc_ir = 0;
|
||
tsc_pc = 0;
|
||
tsc_cdf = 0;
|
||
tsc_enb = 0;
|
||
int_req = int_req & ~INT_TSC;
|
||
return SCPE_OK;
|
||
}
|