RESTRICTION: The PDP-15 FPP is only partially debugged. Do NOT enable this feature for normal operations. 1. New Features in 3.2-1 1.1 SCP and libraries - Added SET CONSOLE subhierarchy. - Added SHOW CONSOLE subhierarchy. - Added limited keyboard mapping capability. 1.2 HP2100 (new features from Dave Bryan) - Added instruction printout to HALT message. - Added M and T internal registers. - Added N, S, and U breakpoints. 1.3 PDP-11 and VAX - Added DHQ11 support (from John Dundas) 2. Bugs Fixed in 3.2-1 2.1 HP2100 (most fixes from Dave Bryan) - SBT increments B after store. - DMS console map must check dms_enb. - SFS x,C and SFC x,C work. - MP violation clears automatically on interrupt. - SFS/SFC 5 is not gated by protection enabled. - DMS enable does not disable mem prot checks. - DMS status inconsistent at simulator halt. - Examine/deposit are checking wrong addresses. - Physical addresses are 20b not 15b. - Revised DMS to use memory rather than internal format. - Revised IBL facility to conform to microcode. - Added DMA EDT I/O pseudo-opcode. - Separated DMA SRQ (service request) from FLG. - Revised peripherals to make SFS x,C and SFC x,C work. - Revised boot ROMs to use IBL facility. - Revised IBL treatment of SR to preserve SR<5:3>. - Fixed LPS, LPT timing. - Fixed DP boot interpretation of SR<0>. - Revised DR boot code to use IBL algorithm. - Fixed TTY input behavior during typeout for RTE-IV. - Suppressed nulls on TTY output for RTE-IV. - Added SFS x,C and SFC x,C to print/parse routines. - Fixed spurious timing error in magtape reads. 2.2 All DEC console devices - Removed SET TTI CTRL-C option. 2.3 PDP-11/VAX peripherals - Fixed bug in TQ reporting write protect status (reported by Lyle Bickley). - Fixed TK70 model number and media ID (found by Robert Schaffrath). - Fixed bug in autoconfigure (found by John Dundas). 2.4 VAX - Fixed bug in DIVBx and DIVWx (reported by Peter Trimmel).
700 lines
22 KiB
C
700 lines
22 KiB
C
/* id32_sys.c: Interdata 32b simulator interface
|
||
|
||
Copyright (c) 2000-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.
|
||
|
||
02-Jul-04 RMS Fixed missing type in declaration
|
||
15-Jul-03 RMS Fixed signed/unsigned bug in get_imm
|
||
27-Feb-03 RMS Added relative addressing support
|
||
23-Dec-01 RMS Cloned from ID4 sources
|
||
*/
|
||
|
||
#include "id_defs.h"
|
||
#include <ctype.h>
|
||
|
||
#define MSK_SBF 0x0100
|
||
#define SEXT15(x) (((x) & 0x4000)? ((x) | ~0x3FFF): ((x) & 0x3FFF))
|
||
|
||
extern DEVICE cpu_dev;
|
||
extern DEVICE sch_dev;
|
||
extern DEVICE pt_dev;
|
||
extern DEVICE tt_dev, ttp_dev;
|
||
extern DEVICE pas_dev, pasl_dev;
|
||
extern DEVICE lpt_dev;
|
||
extern DEVICE pic_dev, lfc_dev;
|
||
extern DEVICE dp_dev, idc_dev;
|
||
extern DEVICE fd_dev, mt_dev;
|
||
extern UNIT cpu_unit;
|
||
extern REG cpu_reg[];
|
||
extern uint32 *M;
|
||
|
||
t_stat fprint_sym_m (FILE *of, t_addr addr, t_value *val, t_bool cf);
|
||
t_stat parse_sym_m (char *cptr, t_addr addr, t_value *val, t_bool cf);
|
||
extern t_stat lp_load (FILE *fileref, char *cptr, char *fnam);
|
||
extern t_stat pt_dump (FILE *of, char *cptr, char *fnam);
|
||
|
||
/* SCP data structures and interface routines
|
||
|
||
sim_name simulator name string
|
||
sim_PC pointer to saved PC register descriptor
|
||
sim_emax number of words for examine
|
||
sim_devices array of pointers to simulated devices
|
||
sim_stop_messages array of pointers to stop messages
|
||
sim_load binary loader
|
||
*/
|
||
|
||
char sim_name[] = "Interdata 32b";
|
||
|
||
REG *sim_PC = &cpu_reg[0];
|
||
|
||
int32 sim_emax = 6;
|
||
|
||
DEVICE *sim_devices[] = {
|
||
&cpu_dev,
|
||
&sch_dev,
|
||
&pt_dev,
|
||
&tt_dev,
|
||
&ttp_dev,
|
||
&pas_dev,
|
||
&pasl_dev,
|
||
&pic_dev,
|
||
&lfc_dev,
|
||
&lpt_dev,
|
||
&dp_dev,
|
||
&idc_dev,
|
||
&fd_dev,
|
||
&mt_dev,
|
||
NULL };
|
||
|
||
const char *sim_stop_messages[] = {
|
||
"Unknown error",
|
||
"Reserved instruction",
|
||
"HALT instruction",
|
||
"Breakpoint",
|
||
"Wait state",
|
||
"Runaway VFU" };
|
||
|
||
/* Binary loader -- load carriage control tape
|
||
Binary dump -- paper tape dump */
|
||
|
||
t_stat sim_load (FILE *fileref, char *cptr, char *fnam, int flag)
|
||
{
|
||
if (flag) return pt_dump (fileref, cptr, fnam);
|
||
return lp_load (fileref, cptr, fnam);
|
||
}
|
||
|
||
/* Symbol tables */
|
||
|
||
#define I_V_FL 16 /* class bits */
|
||
#define I_M_FL 0xF /* class mask */
|
||
#define I_V_MR 0x0 /* mask-register */
|
||
#define I_V_RR 0x1 /* register-register */
|
||
#define I_V_R 0x2 /* register */
|
||
#define I_V_MX 0x3 /* mask-memory */
|
||
#define I_V_RX 0x4 /* register-memory */
|
||
#define I_V_X 0x5 /* memory */
|
||
#define I_V_FF 0x6 /* float reg-reg */
|
||
#define I_V_FX 0x7 /* float reg-mem */
|
||
#define I_V_SI 0x8 /* short immed */
|
||
#define I_V_SB 0x9 /* short branch */
|
||
#define I_V_SX 0xA /* short ext branch */
|
||
#define I_V_RI 0xB /* halfword imm */
|
||
#define I_V_RF 0xC /* fullword imm */
|
||
#define I_MR (I_V_MR << I_V_FL)
|
||
#define I_RR (I_V_RR << I_V_FL)
|
||
#define I_R (I_V_R << I_V_FL)
|
||
#define I_MX (I_V_MX << I_V_FL)
|
||
#define I_RX (I_V_RX << I_V_FL)
|
||
#define I_X (I_V_X << I_V_FL)
|
||
#define I_FF (I_V_FF << I_V_FL)
|
||
#define I_FX (I_V_FX << I_V_FL)
|
||
#define I_SI (I_V_SI << I_V_FL)
|
||
#define I_SB (I_V_SB << I_V_FL)
|
||
#define I_SX (I_V_SX << I_V_FL)
|
||
#define I_RI (I_V_RI << I_V_FL)
|
||
#define I_RF (I_V_RF << I_V_FL)
|
||
|
||
#define R_X 0 /* no R1 */
|
||
#define R_M 1 /* R1 mask */
|
||
#define R_R 2 /* R1 int reg */
|
||
#define R_F 3 /* R1 flt reg */
|
||
|
||
static const int32 masks[] = {
|
||
0xFF00, 0xFF00, 0xFFF0, 0xFF00,
|
||
0xFF00, 0xFFF0, 0xFF00, 0xFF00,
|
||
0xFF00, 0xFE00, 0xFEF0, 0xFF00,
|
||
0xFF00 };
|
||
|
||
static const uint32 r1_type[] = {
|
||
R_M, R_R, R_X, R_M,
|
||
R_R, R_X, R_F, R_F,
|
||
R_R, R_M, R_X, R_R,
|
||
R_R };
|
||
|
||
static const uint32 r2_type[] = {
|
||
R_X, R_R, R_R, R_X,
|
||
R_X, R_X, R_F, R_X,
|
||
R_M, R_X, R_X, R_X,
|
||
R_X };
|
||
|
||
static const char *opcode[] = {
|
||
"BER", "BNER","BZR", "BNZR",
|
||
"BPR", "BNPR","BLR", "BNLR",
|
||
"BMR", "BNMR","BOR", "BNOR",
|
||
"BCR", "BNCR","BR",
|
||
"BES", "BNES","BZS", "BNZS",
|
||
"BPS", "BNPS","BLS", "BNLS",
|
||
"BMS", "BNMS","BOS", "BNOS",
|
||
"BCS", "BNCS","BS",
|
||
"BE", "BNE", "BZ", "BNZ",
|
||
"BP", "BNP", "BL", "BNL",
|
||
"BM", "BNM", "BO", "BNO",
|
||
"BC", "BNC", "B",
|
||
"BALR","BTCR","BFCR",
|
||
"NR", "CLR", "OR", "XR",
|
||
"LR", "CHR", "AR", "SR",
|
||
"MHR", "DHR",
|
||
"SRLS","SLLS","CHVR",
|
||
"LPSWR",
|
||
"MR", "DR",
|
||
"BTBS","BTFS","BFBS","BFFS",
|
||
"LIS", "LCS", "AIS", "SIS",
|
||
"LER", "CER", "AER", "SER",
|
||
"MER", "DER", "FXR", "FLR",
|
||
"MPBSR", "PBR",
|
||
"EXHR",
|
||
"LDR", "CDR", "ADR", "SDR",
|
||
"MDR", "DDR", "FXDR","FLDR",
|
||
"STH", "BAL", "BTC", "BFC",
|
||
"NH", "CLH", "OH", "XH",
|
||
"LH", "CH", "AH", "SH",
|
||
"MH", "DH",
|
||
"ST", "AM",
|
||
"N", "CL", "O", "X",
|
||
"L", "C", "A", "S",
|
||
"M", "D", "CRC12","CRC16",
|
||
"STE", "AHM", "PB", "LRA",
|
||
"ATL", "ABL", "RTL", "RBL",
|
||
"LE", "CE", "AE", "SE",
|
||
"ME", "DE",
|
||
"STD", "STME","LME", "LHL",
|
||
"TBT", "SBT", "RBT", "CBT",
|
||
"LD", "CD", "AD", "SD",
|
||
"MD", "DD", "STMD","LMD",
|
||
"SRHLS","SLHLS","STBR","LBR",
|
||
"EXBR","EPSR","WBR", "RBR",
|
||
"WHR", "RHR", "WDR", "RDR",
|
||
"SSR", "OCR",
|
||
"BXH", "BXLE","LPSW","THI",
|
||
"NHI", "CLHI","OHI", "XHI",
|
||
"LHI", "CHI", "AHI", "SHI",
|
||
"SRHL","SLHL","SRHA","SLHA",
|
||
"STM", "LM", "STB", "LB",
|
||
"CLB", "AL", "WB", "RB",
|
||
"WH", "RH", "WD", "RD",
|
||
"SS", "OC",
|
||
"TS", "SVC", "SINT","SCP",
|
||
"LA", "TLATE",
|
||
"RRL", "RLL",
|
||
"SRL", "SLL", "SRA", "SLA",
|
||
"TI",
|
||
"NI", "CLI", "OI", "XI",
|
||
"LI", "CI", "AI", "SI",
|
||
NULL };
|
||
|
||
static const uint32 opc_val[] = {
|
||
0x0330+I_R, 0x0230+I_R, 0x0330+I_R, 0x0230+I_R,
|
||
0x0220+I_R, 0x0320+I_R, 0x0280+I_R, 0x0380+I_R,
|
||
0x0210+I_R, 0x0310+I_R, 0x0240+I_R, 0x0340+I_R,
|
||
0x0280+I_R, 0x0380+I_R, 0x0300+I_R,
|
||
0x2230+I_SX, 0x2030+I_SX, 0x2230+I_SX, 0x2030+I_SX,
|
||
0x2020+I_SX, 0x2220+I_SX, 0x2080+I_SX, 0x2280+I_SX,
|
||
0x2010+I_SX, 0x2210+I_SX, 0x2040+I_SX, 0x2240+I_SX,
|
||
0x2080+I_SX, 0x2280+I_SX, 0x2200+I_SX,
|
||
0x4330+I_X, 0x4230+I_X, 0x4330+I_X, 0x4230+I_X,
|
||
0x4220+I_X, 0x4320+I_X, 0x4280+I_X, 0x4380+I_X,
|
||
0x4210+I_X, 0x4310+I_X, 0x4240+I_X, 0x4340+I_X,
|
||
0x4280+I_X, 0x4380+I_X, 0x4300+I_X,
|
||
0x0100+I_RR, 0x0200+I_MR, 0x0300+I_MR,
|
||
0x0400+I_RR, 0x0500+I_RR, 0x0600+I_RR, 0x0700+I_RR,
|
||
0x0800+I_RR, 0x0900+I_RR, 0x0A00+I_RR, 0x0B00+I_RR,
|
||
0x0C00+I_RR, 0x0D00+I_RR,
|
||
0x1000+I_SI, 0x1100+I_SI, 0x1200+I_RR,
|
||
0x1800+I_RR,
|
||
0x1C00+I_RR, 0x1D00+I_RR,
|
||
0x2000+I_SB, 0x2100+I_SB, 0x2200+I_SB, 0x2300+I_SB,
|
||
0x2400+I_SI, 0x2500+I_SI, 0x2600+I_SI, 0x2700+I_SI,
|
||
0x2800+I_FF, 0x2900+I_FF, 0x2A00+I_FF, 0x2B00+I_FF,
|
||
0x2C00+I_FF, 0x2D00+I_FF, 0x2E00+I_RR, 0x2F00+I_RR,
|
||
0x3000+I_RR, 0x3200+I_RR,
|
||
0x3400+I_RR,
|
||
0x3800+I_FF, 0x3900+I_FF, 0x3A00+I_FF, 0x3B00+I_FF,
|
||
0x3C00+I_FF, 0x3D00+I_FF, 0x3E00+I_RR, 0x3F00+I_RR,
|
||
0x4000+I_RX, 0x4100+I_RX, 0x4200+I_MX, 0x4300+I_MX,
|
||
0x4400+I_RX, 0x4500+I_RX, 0x4600+I_RX, 0x4700+I_RX,
|
||
0x4800+I_RX, 0x4900+I_RX, 0x4A00+I_RX, 0x4B00+I_RX,
|
||
0x4C00+I_RX, 0x4D00+I_RX,
|
||
0x5000+I_RX, 0x5100+I_RX,
|
||
0x5400+I_RX, 0x5500+I_RX, 0x5600+I_RX, 0x5700+I_RX,
|
||
0x5800+I_RX, 0x5900+I_RX, 0x5A00+I_RX, 0x5B00+I_RX,
|
||
0x5C00+I_RX, 0x5D00+I_RX, 0x5E00+I_RX, 0x5F00+I_RX,
|
||
0x6000+I_RX, 0x6100+I_RX, 0x6200+I_RX, 0x6300+I_RX,
|
||
0x6400+I_RX, 0x6500+I_RX, 0x6600+I_RX, 0x6700+I_RX,
|
||
0x6800+I_FX, 0x6900+I_FX, 0x6A00+I_FX, 0x6B00+I_FX,
|
||
0x6C00+I_FX, 0x6D00+I_FX,
|
||
0x7000+I_FX, 0x7100+I_FX, 0x7200+I_FX, 0x7300+I_RX,
|
||
0x7400+I_RX, 0x7500+I_RX, 0x7600+I_RX, 0x7700+I_RX,
|
||
0x7800+I_FX, 0x7900+I_FX, 0x7A00+I_FX, 0x7B00+I_FX,
|
||
0x7C00+I_FX, 0x7D00+I_FX, 0x7E00+I_FX, 0x7F00+I_FX,
|
||
0x9000+I_SI, 0x9100+I_SI, 0x9200+I_RR, 0x9300+I_RR,
|
||
0x9400+I_RR, 0x9500+I_RR, 0x9600+I_RR, 0x9700+I_RR,
|
||
0x9800+I_RR, 0x9900+I_RR, 0x9A00+I_RR, 0x9B00+I_RR,
|
||
0x9D00+I_RR, 0x9E00+I_RR,
|
||
0xC000+I_RX, 0xC100+I_RX, 0xC200+I_RX, 0xC300+I_RI,
|
||
0xC400+I_RI, 0xC500+I_RI, 0xC600+I_RI, 0xC700+I_RI,
|
||
0xC800+I_RI, 0xC900+I_RI, 0xCA00+I_RI, 0xCB00+I_RI,
|
||
0xCC00+I_RI, 0xCD00+I_RI, 0xCE00+I_RI, 0xCF00+I_RI,
|
||
0xD000+I_RX, 0xD100+I_RX, 0xD200+I_RX, 0xD300+I_RX,
|
||
0xD400+I_RX, 0xD500+I_X, 0xD600+I_RX, 0xD700+I_RX,
|
||
0xD800+I_RX, 0xD900+I_RX, 0xDA00+I_RX, 0xDB00+I_RX,
|
||
0xDD00+I_RX, 0xDE00+I_RX,
|
||
0xE000+I_RX, 0xE100+I_RX, 0xE200+I_RI, 0xE300+I_RX,
|
||
0xE600+I_RX, 0xE700+I_RX,
|
||
0xEA00+I_RI, 0xEB00+I_RI,
|
||
0xEC00+I_RI, 0xED00+I_RI, 0xEE00+I_RI, 0xEF00+I_RI,
|
||
0xF300+I_RF,
|
||
0xF400+I_RF, 0xF500+I_RF, 0xF600+I_RF, 0xF700+I_RF,
|
||
0xF800+I_RF, 0xF900+I_RF, 0xFA00+I_RF, 0xFB00+I_RF,
|
||
0xFFFF };
|
||
|
||
/* Print an RX specifier */
|
||
|
||
t_stat fprint_addr (FILE *of, t_addr addr, uint32 rx, uint32 ea1,
|
||
uint32 ea2, t_bool cf)
|
||
{
|
||
uint32 rx2;
|
||
|
||
if ((ea1 & 0xC000) == 0) { /* RX1 */
|
||
fprintf (of, "%-X", ea1);
|
||
if (rx) fprintf (of, "(R%d)", rx);
|
||
return -3; }
|
||
if (ea1 & 0x8000) { /* RX2 */
|
||
if (cf) { /* for CPU? */
|
||
ea1 = addr + 4 + SEXT15 (ea1);
|
||
fprintf (of, "%-X", ea1 & VAMASK32); }
|
||
else { /* for dev */
|
||
int32 disp = SEXT15 (ea1); /* get disp */
|
||
if (disp >= -4) fprintf (of, ".+%-X", disp + 4);
|
||
else fprintf (of, ".-%-X", -4 - disp); }
|
||
if (rx) fprintf (of, "(R%d)", rx);
|
||
return -3; }
|
||
rx2 = (ea1 >> 8) & 0xF;
|
||
fprintf (of, "%-X", ((ea1 << 16) | ea2) & VAMASK32);
|
||
if (rx && !rx2) fprintf (of, "(R%d)", rx);
|
||
if (rx2) fprintf (of, "(R%d,R%d)", rx, rx2);
|
||
return -5;
|
||
}
|
||
|
||
#define GETNUM(d,n) for (k = d = 0; k < n; k++) \
|
||
d = (d << 8) | (((uint32) val[vp++]) & 0xFF)
|
||
|
||
/* Symbolic decode
|
||
|
||
Inputs:
|
||
*of = output stream
|
||
addr = current PC
|
||
*val = values to decode
|
||
*uptr = pointer to unit
|
||
sw = switches
|
||
Outputs:
|
||
return = if >= 0, error code
|
||
if < 0, number of extra bytes retired
|
||
*/
|
||
|
||
t_stat fprint_sym (FILE *of, t_addr addr, t_value *val,
|
||
UNIT *uptr, int32 sw)
|
||
{
|
||
int32 c, k, num, rdx, vp, lnt;
|
||
t_stat r;
|
||
DEVICE *dptr;
|
||
|
||
if (uptr == NULL) uptr = &cpu_unit; /* anon = CPU */
|
||
dptr = find_dev_from_unit (uptr); /* find dev */
|
||
if (dptr == NULL) return SCPE_IERR;
|
||
if (dptr->dwidth != 8) return SCPE_ARG; /* byte dev only */
|
||
if (sw & SWMASK ('B')) lnt = 1; /* get length */
|
||
else if (sw & SWMASK ('W')) lnt = 2;
|
||
else if (sw & SWMASK ('F')) lnt = 4;
|
||
else lnt = (uptr == &cpu_unit)? 4: 1;
|
||
if (sw & SWMASK ('D')) rdx = 10; /* get radix */
|
||
else if (sw & SWMASK ('O')) rdx = 8;
|
||
else if (sw & SWMASK ('H')) rdx = 16;
|
||
else rdx = dptr->dradix;
|
||
vp = 0; /* init ptr */
|
||
if ((sw & SWMASK ('A')) || (sw & SWMASK ('C'))) { /* char format? */
|
||
if (sw & SWMASK ('C')) lnt = sim_emax; /* -c -> string */
|
||
if ((val[0] & 0x7F) == 0) return SCPE_ARG;
|
||
while (vp < lnt) { /* print string */
|
||
if ((c = (uint32) val[vp++] & 0x7F) == 0) break;
|
||
fprintf (of, (c < 0x20)? "<%02X>": "%c", c); }
|
||
return -(vp - 1); } /* return # chars */
|
||
|
||
if (sw & SWMASK ('M')) { /* inst format? */
|
||
r = fprint_sym_m (of, addr, val, uptr == &cpu_unit); /* decode inst */
|
||
if (r <= 0) return r; /* success? */
|
||
lnt = 2; } /* no, skip 16b */
|
||
|
||
GETNUM (num, lnt); /* get number */
|
||
fprint_val (of, num, rdx, lnt * 8, PV_RZRO);
|
||
return -(vp - 1);
|
||
}
|
||
|
||
/* Symbolic decode for -m
|
||
|
||
Inputs:
|
||
of = output stream
|
||
addr = current PC
|
||
*val = values to decode
|
||
cf = true if parsing for CPU
|
||
Outputs:
|
||
return = if >= 0, error code
|
||
if < 0, number of extra bytes retired
|
||
*/
|
||
|
||
t_stat fprint_sym_m (FILE *of, t_addr addr, t_value *val, t_bool cf)
|
||
{
|
||
uint32 i, j, k, inst, r1, r2, ea1, ea2, vp;
|
||
|
||
vp = 0;
|
||
GETNUM (inst,2); /* high 16b */
|
||
GETNUM (ea1, 2); /* next 16b */
|
||
GETNUM (ea2, 2); /* next 16b */
|
||
for (i = 0; opc_val[i] != 0xFFFF; i++) { /* loop thru ops */
|
||
j = (opc_val[i] >> I_V_FL) & I_M_FL; /* get class */
|
||
if ((opc_val[i] & 0xFFFF) == (inst & masks[j])) { /* match? */
|
||
r1 = (inst >> 4) & 0xF;
|
||
r2 = inst & 0xF;
|
||
fprintf (of, "%s ", opcode[i]); /* print opcode */
|
||
switch (j) { /* case on class */
|
||
case I_V_MR: /* mask-register */
|
||
fprintf (of, "%-X,R%d", r1, r2);
|
||
return -1;
|
||
case I_V_RR: /* register-register */
|
||
case I_V_FF: /* floating-floating */
|
||
fprintf (of, "R%d,R%d", r1, r2);
|
||
return -1;
|
||
case I_V_SI: /* short immediate */
|
||
fprintf (of, "R%d,%-X", r1, r2);
|
||
return -1;
|
||
case I_V_SB: /* short branch */
|
||
fprintf (of, "%-X,", r1);
|
||
case I_V_SX: /* ext short branch */
|
||
if (cf) fprintf (of, "%-X", ((inst & MSK_SBF)?
|
||
(addr + r2 + r2): (addr - r2 - r2)));
|
||
else fprintf (of, ((inst & MSK_SBF)?
|
||
".+%-X": ".-%X"), r2 + r2);
|
||
return -1;
|
||
case I_V_R: /* register */
|
||
fprintf (of, "R%d", r2);
|
||
return -1;
|
||
case I_V_RI: /* reg-immed */
|
||
fprintf (of, "R%d,%-X", r1, ea1);
|
||
if (r2) fprintf (of, "(R%d)", r2);
|
||
return -3;
|
||
case I_V_RF: /* reg-full imm */
|
||
fprintf (of, "R%d,%-X", r1, (ea1 << 16) | ea2);
|
||
if (r2) fprintf (of, "(R%d)", r2);
|
||
return -5;
|
||
case I_V_MX: /* mask-memory */
|
||
fprintf (of, "%-X,", r1);
|
||
return fprint_addr (of, addr, r2, ea1, ea2, cf);
|
||
case I_V_RX: /* register-memory */
|
||
case I_V_FX: /* floating-memory */
|
||
fprintf (of, "R%d,", r1);
|
||
case I_V_X: /* memory */
|
||
return fprint_addr (of, addr, r2, ea1, ea2, cf); }
|
||
return SCPE_IERR; } /* end if */
|
||
} /* end for */
|
||
return SCPE_ARG; /* no match */
|
||
}
|
||
|
||
/* Register number
|
||
|
||
Inputs:
|
||
*cptr = pointer to input string
|
||
**optr = pointer to pointer to next char
|
||
rtype = mask, integer, or float
|
||
Outputs:
|
||
rnum = output register number, -1 if error
|
||
*/
|
||
|
||
int32 get_reg (char *cptr, char **optr, int32 rtype)
|
||
{
|
||
int32 reg;
|
||
|
||
if ((*cptr == 'R') || (*cptr == 'r')) { /* R? */
|
||
cptr++; /* skip */
|
||
if (rtype == R_M) return -1; } /* cant be mask */
|
||
if ((*cptr >= '0') && (*cptr <= '9')) {
|
||
reg = *cptr++ - '0';
|
||
if ((*cptr >= '0') && (*cptr <= '9'))
|
||
reg = (reg * 10) + (*cptr - '0');
|
||
else --cptr;
|
||
if (reg > 0xF) return -1; }
|
||
else if ((*cptr >= 'a') && (*cptr <= 'f')) reg = (*cptr - 'a') + 10;
|
||
else if ((*cptr >= 'A') && (*cptr <= 'F')) reg = (*cptr - 'A') + 10;
|
||
else return -1;
|
||
if ((rtype == R_F) && (reg & 1)) return -1;
|
||
*optr = cptr + 1;
|
||
return reg;
|
||
}
|
||
|
||
/* Immediate
|
||
|
||
Inputs:
|
||
*cptr = pointer to input string
|
||
*imm = pointer to output value
|
||
*inst = pointer to instruction
|
||
max = max value
|
||
Outputs:
|
||
sta = status
|
||
*/
|
||
|
||
t_stat get_imm (char *cptr, uint32 *imm, uint32 *inst, uint32 max)
|
||
{
|
||
char *tptr;
|
||
int32 idx;
|
||
|
||
errno = 0;
|
||
*imm = strtoul (cptr, &tptr, 16); /* get immed */
|
||
if (errno || (*imm > max) || (cptr == tptr)) return SCPE_ARG;
|
||
if (*tptr == '(') { /* index? */
|
||
if ((idx = get_reg (tptr + 1, &tptr, R_R)) < 0)
|
||
return SCPE_ARG;
|
||
if (*tptr++ != ')') return SCPE_ARG;
|
||
*inst = *inst | idx; }
|
||
if (*tptr != 0) return SCPE_ARG;
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* Address
|
||
|
||
Inputs:
|
||
*cptr = pointer to input string
|
||
**tptr = pointer to moved pointer
|
||
*ea = effective address
|
||
*rel = relative flag
|
||
addr = base address
|
||
cf = true if parsing for CPU
|
||
Outputs:
|
||
status = SCPE_OK if ok, else error code
|
||
*/
|
||
|
||
t_stat get_addr (char *cptr, char **tptr, t_addr *ea, t_bool *rel,
|
||
t_addr addr, t_bool cf)
|
||
{
|
||
int32 sign = 1;
|
||
|
||
*ea = 0;
|
||
if (*cptr == '.') { /* relative? */
|
||
*rel = TRUE;
|
||
cptr++;
|
||
if (cf) *ea = addr;
|
||
if (*cptr == '+') cptr++; /* .+? */
|
||
else if (*cptr == '-') { /* .-? */
|
||
sign = -1;
|
||
cptr++; }
|
||
else return SCPE_OK; }
|
||
else *rel = FALSE;
|
||
errno = 0;
|
||
*ea = *ea + (sign * ((int32) strtoul (cptr, tptr, 16)));
|
||
if (errno || (cptr == *tptr)) return SCPE_ARG;
|
||
return SCPE_OK;
|
||
}
|
||
|
||
#define PUTNUM(d,n) for (k = n; k > 0; k--) \
|
||
val[vp++] = (d >> ((k - 1) * 8)) & 0xFF
|
||
|
||
/* Symbolic input */
|
||
|
||
t_stat parse_sym (char *cptr, t_addr addr, UNIT *uptr, t_value *val, int32 sw)
|
||
{
|
||
int32 k, rdx, lnt, num, vp;
|
||
t_stat r;
|
||
DEVICE *dptr;
|
||
static const uint32 maxv[5] = { 0, 0xFF, 0xFFFF, 0, 0xFFFFFFFF };
|
||
|
||
if (uptr == NULL) uptr = &cpu_unit; /* anon = CPU */
|
||
dptr = find_dev_from_unit (uptr); /* find dev */
|
||
if (dptr == NULL) return SCPE_IERR;
|
||
if (dptr->dwidth != 8) return SCPE_ARG; /* byte dev only */
|
||
if (sw & SWMASK ('B')) lnt = 1; /* get length */
|
||
else if (sw & SWMASK ('W')) lnt = 2;
|
||
else if (sw & SWMASK ('F')) lnt = 4;
|
||
else lnt = (uptr == &cpu_unit)? 4: 1;
|
||
if (sw & SWMASK ('D')) rdx = 10; /* get radix */
|
||
else if (sw & SWMASK ('O')) rdx = 8;
|
||
else if (sw & SWMASK ('H')) rdx = 16;
|
||
else rdx = dptr->dradix;
|
||
vp = 0;
|
||
if ((sw & SWMASK ('A')) || (sw & SWMASK ('C'))) { /* char format? */
|
||
if (sw & SWMASK ('C')) lnt = sim_emax; /* -c -> string */
|
||
if (*cptr == 0) return SCPE_ARG;
|
||
while ((vp < lnt) && *cptr) { /* get chars */
|
||
val[vp++] = *cptr++; }
|
||
return -(vp - 1); } /* return # chars */
|
||
|
||
r = parse_sym_m (cptr, addr, val, uptr == &cpu_unit); /* try to parse */
|
||
if (r <= 0) return r;
|
||
|
||
num = (int32) get_uint (cptr, rdx, maxv[lnt], &r); /* get number */
|
||
if (r != SCPE_OK) return r;
|
||
PUTNUM (num, lnt); /* store */
|
||
return -(lnt - 1);
|
||
}
|
||
|
||
/* Symbolic input for -m
|
||
|
||
Inputs:
|
||
*cptr = pointer to input string
|
||
addr = current PC
|
||
*val = pointer to output values
|
||
cf = true if parsing for CPU
|
||
Outputs:
|
||
status = > 0 error code
|
||
<= 0 -number of extra words
|
||
*/
|
||
|
||
t_stat parse_sym_m (char *cptr, t_addr addr, t_value *val, t_bool cf)
|
||
{
|
||
uint32 i, j, k, df, db, t, inst, vp;
|
||
int32 st, r1, r2, rx2;
|
||
t_stat r;
|
||
t_bool rel;
|
||
char *tptr, gbuf[CBUFSIZE];
|
||
|
||
vp = 0;
|
||
cptr = get_glyph (cptr, gbuf, 0); /* get opcode */
|
||
for (i = 0; (opcode[i] != NULL) && (strcmp (opcode[i], gbuf) != 0) ; i++) ;
|
||
if (opcode[i] == NULL) return SCPE_ARG;
|
||
inst = opc_val[i] & 0xFFFF; /* get value */
|
||
j = (opc_val[i] >> I_V_FL) & I_M_FL; /* get class */
|
||
if (r1_type[j]) { /* any R1 field? */
|
||
cptr = get_glyph (cptr, gbuf, ','); /* get R1 field */
|
||
if ((r1 = get_reg (gbuf, &tptr, r1_type[j])) < 0)
|
||
return SCPE_ARG;
|
||
if (*tptr != 0) return SCPE_ARG;
|
||
inst = inst | (r1 << 4); } /* or in R1 */
|
||
|
||
cptr = get_glyph (cptr, gbuf, 0); /* get operand */
|
||
if (*cptr) return SCPE_ARG; /* should be end */
|
||
switch (j) { /* case on class */
|
||
|
||
case I_V_FF: case I_V_SI: /* flt-flt, sh imm */
|
||
case I_V_MR: case I_V_RR: /* mask/reg-register */
|
||
case I_V_R: /* register */
|
||
if ((r2 = get_reg (gbuf, &tptr, r2_type[j])) < 0)
|
||
return SCPE_ARG;
|
||
if (*tptr != 0) return SCPE_ARG;
|
||
inst = inst | r2; /* or in R2 */
|
||
break;
|
||
|
||
case I_V_FX: /* float-memory */
|
||
case I_V_MX: case I_V_RX: /* mask/reg-memory */
|
||
case I_V_X: /* memory */
|
||
r = get_addr (gbuf, &tptr, &t, &rel, addr, cf); /* get addr */
|
||
if (r != SCPE_OK) return SCPE_ARG; /* error? */
|
||
rx2 = 0; /* assume no 2nd */
|
||
if (*tptr == '(') { /* index? */
|
||
if ((r2 = get_reg (tptr + 1, &tptr, R_R)) < 0)
|
||
return SCPE_ARG;
|
||
inst = inst | r2; /* or in R2 */
|
||
if (*tptr == ',') { /* 2nd index? */
|
||
if ((rx2 = get_reg (tptr + 1, &tptr, R_R)) < 0)
|
||
return SCPE_ARG; }
|
||
if (*tptr++ != ')') return SCPE_ARG; } /* all done? */
|
||
if (*tptr != 0) return SCPE_ARG;
|
||
PUTNUM (inst, 2); /* store inst */
|
||
if (!cf && rel) { /* periph, rel */
|
||
st = t - 4; /* displ */
|
||
if (rx2 || (st > 0x3FFF) || (st < -0x4000)) /* rx2 or too big? */
|
||
return SCPE_ARG;
|
||
t = (st & 0x7FFF) | 0x8000;
|
||
PUTNUM (t, 2); /* store displ */
|
||
return -3; }
|
||
if (rx2 == 0) { /* no 2nd? */
|
||
if (t < 0x4000) { /* RX1? */
|
||
PUTNUM (t, 2); /* store ea */
|
||
return -3; }
|
||
st = (t - (addr + 4)); /* displ */
|
||
if (cf && (st <= 0x3FFF) && (st >= -0x4000)) { /* RX2? CPU only */
|
||
t = (st & 0x7FFF) | 0x8000;
|
||
PUTNUM (t, 2); /* store displ */
|
||
return -3; } }
|
||
t = (t & VAMASK32) | 0x40000000 | (rx2 << 24);
|
||
PUTNUM (t, 4); /* RX3 */
|
||
return -5;
|
||
|
||
case I_V_RI: /* 16b immediate */
|
||
r = get_imm (gbuf, &t, &inst, DMASK16); /* process imm */
|
||
if (r != SCPE_OK) return r;
|
||
PUTNUM (inst, 2); /* store inst */
|
||
PUTNUM (t, 2); /* store 16b imm */
|
||
return -3;
|
||
|
||
case I_V_RF:
|
||
r = get_imm (gbuf, &t, &inst, DMASK32); /* process imm */
|
||
if (r != SCPE_OK) return r;
|
||
PUTNUM (inst, 2); /* store inst */
|
||
PUTNUM (t, 4); /* store 32b imm */
|
||
return -5;
|
||
|
||
case I_V_SB: case I_V_SX: /* short branches */
|
||
r = get_addr (gbuf, &tptr, &t, &rel, addr, cf); /* get addr */
|
||
if ((r != SCPE_OK) || (t & 1) || *tptr) /* error if odd */
|
||
return SCPE_ARG;
|
||
st = t; /* signed version */
|
||
if (cf) { /* for CPU? */
|
||
db = (addr - t) & 0x1F; /* back displ */
|
||
df = (t - addr) & 0x1F; /* fwd displ */
|
||
if ((t == ((addr - db) & VAMASK16)) && /* back work and */
|
||
((j == I_V_SX) || !(inst & MSK_SBF))) /* ext or back br? */
|
||
inst = inst | (db >> 1); /* or in back displ */
|
||
else if ((t == ((addr + df) & VAMASK16)) && /* fwd work and */
|
||
((j == I_V_SX) || (inst & MSK_SBF))) /* ext or fwd br? */
|
||
inst = inst | (df >> 1) | MSK_SBF; /* or in fwd displ */
|
||
else return SCPE_ARG; }
|
||
else if (rel) { /* periph, must be rel */
|
||
if ((st <= 0) && (st >= -0x1F) && /* relative back? */
|
||
((j == I_V_SX) || !(inst & MSK_SBF)))
|
||
inst = inst | ((-st & 0x1F) >> 1);
|
||
else if ((st >= 0) && (st < 0x1F) && /* relative fwd? */
|
||
((j == I_V_SX) || (inst & MSK_SBF)))
|
||
inst = inst | ((t & 0x1F) >> 1);
|
||
else return SCPE_ARG; }
|
||
else return SCPE_ARG; /* periph & ~rel, err */
|
||
} /* end case */
|
||
|
||
PUTNUM (inst, 2);
|
||
return -1;
|
||
}
|