RESTRICTION: The FP15 and XVM features of the PDP-15 are only partially debugged. Do NOT enable these features for normal operations. 1. New Features in 3.0-1 1.1 PDP-1 - Added block loader format support to LOAD. - Changed BOOT PTR to allow loading of all of the first bank of memory. 1.2 PDP-18b Family - Added PDP-4 EAE support. - Added PDP-15 FP15 support. - Added PDP-15 XVM support. - Added PDP-15 "re-entrancy ECO". - Added PDP-7, PDP-9, PDP-15 hardware RIM loader support in BOOT PTR. 2. Bugs Fixed in 3.0-1 2.1 PDP-11/VAX - Fixed bug in user disk size (found by Chaskiel M Grundman). 2.2 PDP-1 - Updated CPU, line printer, standard devices to detect indefinite I/O wait. - Fixed incorrect logical, missing activate, break in drum simulator. - Fixed bugs in instruction decoding, overprinting for line printer. 2.3 PDP-10 - Fixed bug in RP read header. 2.4 PDP-18b Family - Fixed bug in PDP-4 line printer overprinting. - Fixed bug in PDP-15 memory protect/skip interaction. - Fixed bug in RF set size routine. - Increased PTP TIME for PDP-15 operating systems. 2.5 PDP-8 - Fixed bug in DF, RF set size routine. 2.6 Nova - Fixed bug in DSK set size routine. 2.7 1401 - Revised fetch to model hardware more closely. 2.8 Ibm1130 - Fixed bugs found by APL 1130. 2.9 Altairz80 - Fixed bug in real-time clock on Windows host. 2.10 HP2100 -- Fixed DR drum sizes. -- Fixed DR variable capacity interaction with SAVE/RESTORE. 3. New Features in 3.0 vs prior releases 3.1 SCP and Libraries - Added ASSIGN/DEASSIGN (logical name) commands. - Changed RESTORE to unconditionally detach files. - Added E11 and TPC format support to magtape library. - Fixed bug in SHOW CONNECTIONS. - Added USE_ADDR64 support 3.2 All magtapes - Magtapes support SIMH format, E11 format, and TPC format (read only). - SET <tape_unit> FORMAT=format sets the specified tape unit's format. - SHOW <tape_unit> FORMAT displays the specified tape unit's format. - Tape format can also be set as part of the ATTACH command, using the -F switch. 3.3 VAX - VAX can be compiled without USE_INT64. - If compiled with USE_INT64 and USE_ADDR64, RQ and TQ controllers support files > 2GB. - VAX ROM has speed control (SET ROM DELAY/NODELAY). 4. Bugs Fixed in 3.0 vs prior releases 4.1 VAX - Fixed CVTfi bug: integer overflow not set if exponent out of range - Fixed EMODx bugs: o First and second operands reversed o Separated fraction received wrong exponent o Overflow calculation on separated integer incorrect o Fraction not set to zero if exponent out of range - Fixed interval timer and ROM access to pass power-up self-test even on very fast host processors (fixes from Mark Pizzolato). 4.2 1401 - Fixed mnemonic, instruction lengths, and reverse scan length check bug for MCS. - Fixed MCE bug, BS off by 1 if zero suppress. - Fixed chaining bug, D lost if return to SCP. - Fixed H branch, branch occurs after continue. - Added check for invalid 8 character MCW, LCA. - Fixed magtape load-mode end of record response. 4.3 Nova - Fixed DSK variable size interaction with restore. 4.4 PDP-1 - Fixed DT variable size interaction with restore. 4.5 PDP-11 - Fixed DT variable size interaction with restore. - Fixed bug in MMR1 update (found by Tim Stark). - Added XQ features and fixed bugs: o Corrected XQ interrupts on IE state transition (code by Tom Evans). o Added XQ interrupt clear on soft reset. o Removed XQ interrupt when setting XL or RL (multiple people). o Added SET/SHOW XQ STATS. o Added SHOW XQ FILTERS. o Added ability to split received packet into multiple buffers. o Added explicit runt and giant packet processing. 4.6 PDP-18B - Fixed DT, RF variable size interaction with restore. - Fixed MT bug in MTTR. 4.7 PDP-8 - Fixed DT, DF, RF, RX variable size interaction with restore. - Fixed MT bug in SKTR. 4.8 HP2100 - Fixed bug in DP (13210A controller only), DQ read status. - Fixed bug in DP, DQ seek complete. 4.9 GRI - Fixed bug in SC queue pointer management.
303 lines
11 KiB
C
303 lines
11 KiB
C
// ibm1130_fmt.c : interpret tabs in 1130 Assembler or Fortran source
|
|
// Bob Flanders
|
|
// -------------------------------------------------------------------------------------------
|
|
//
|
|
// These routines are used by ibm1130_cr.c when the user has indicated
|
|
// that the input text is formatted with tabs. Input lines are edited
|
|
// into the appropriate column format. Three edit modes are recognized:
|
|
//
|
|
// Assembler mode:
|
|
// Input lines of the form
|
|
//
|
|
// [label]<whitespace>[opcode]<tab>[tag][L]<tab>[argument]
|
|
//
|
|
// are rearranged so that the input fields are placed in the appropriate columns
|
|
//
|
|
// The label must start on the first character of the line. If there is no label,
|
|
// the first character(s) before the opcode must be whitespace. Following the opcode, there
|
|
// MUST be a tab character, followed by the format and tag. Following the format and tag
|
|
// may be exactly one whitespace character, and then starts the argument.
|
|
//
|
|
// Input lines with * in column 1 and blank lines are turned into Assembler comments,
|
|
// with the * in the Opcode field.
|
|
//
|
|
// Assembler directive lines at the beginning of the deck must be preceded by
|
|
// ! to indicate that they are not comments. For example,
|
|
//
|
|
// !*LIST
|
|
// * This is a comment
|
|
//
|
|
// Fortran mode:
|
|
// Input lines of the form
|
|
//
|
|
// [label]<tab>statement
|
|
//
|
|
// or
|
|
//
|
|
// [label]<tab>Xcontinuation
|
|
//
|
|
// where X is a non alphabetic contination character are rearranged in the
|
|
// appropriate manner:
|
|
//
|
|
// 1 2
|
|
// 12345678901234567890...
|
|
// ------------------------
|
|
// label statement
|
|
// labelXcontinuation
|
|
//
|
|
// However, you must take care that you don't end up with statement text after column 72.
|
|
//
|
|
// Input lines with * or C in column 1 are left alone (comments and directives)
|
|
//
|
|
// (The ! escape is not used before Fortran directives as before Assembler directives)
|
|
//
|
|
// Tab mode:
|
|
// Tabs are replaced with spaces. Tab settings are assumed to be eight characters wide,
|
|
// as is standard for vi, notepad, etc.
|
|
// -------------------------------------------------------------------------------------------
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <memory.h>
|
|
#include <ctype.h>
|
|
#include "ibm1130_fmt.h"
|
|
|
|
#define MAXLINE 81 // maximum output line size
|
|
#define WORKSZ 256 // size for tab work area
|
|
#define TAGOFFSET 12 // offset for tag field
|
|
#define FMTOFFSET 11 // offset for format field
|
|
|
|
#define MIN(a,b) ((a < b) ? a : b)
|
|
#define AMSG " with Assembler Reformat"
|
|
#define FMSG " with FORTRAN Reformat"
|
|
#define AFORMAT "%20.20s%-60.60s"," "
|
|
#define ACOMMENTFMT "%20.20s%-60.60s"," "
|
|
#define ABLANKLINE "%20.20s*"," "
|
|
#define FFORMAT "%-5.5s %-74.74s"
|
|
#define FCONTFMT "%-5.5s%-75.75s"
|
|
|
|
char gszLabel[6]; // work area for label
|
|
char gszArg[MAXLINE]; // .. argument
|
|
char gszOutput[MAXLINE]; // .. output
|
|
short gaiAsmTabs[] = {7,12,15,20,25,30,35,40,45,52,0};// tab stops for assembler
|
|
|
|
short gaiPlainTabs[] = {9, 17, 25, 33, 41, 49, 57, 65, 73, 0};// tab stops for just plain tabs
|
|
|
|
// ///////////////
|
|
// helper routines
|
|
|
|
///////////////////////////////////////////////////
|
|
// ExpandTabs: Expand tabs to spaces
|
|
|
|
char* ExpandTabs(char* p_szInbuf, // expand tabs .. input buffer
|
|
char* p_szOutbuf, // .. output buffer
|
|
short* p_aiTabs) // .. array of tab stops (1 based) -- 0 end of array
|
|
{
|
|
short iI, // input position
|
|
iO, // output position
|
|
iT; // next tab stop
|
|
|
|
char cX; // character to test
|
|
|
|
iI = 0; // init input position
|
|
iO = 0; // init output position
|
|
iT = 0; // init tab stop
|
|
|
|
while (cX = *(p_szInbuf + iI)) // while there are characters
|
|
{
|
|
if (cX == '\t') // q. tab character?
|
|
{ // a. yes ..
|
|
while ((p_aiTabs[iT] <= iO + 1) // search for next valid stop ..
|
|
&& (p_aiTabs[iT] != 0)) // .. or end of table
|
|
iT++; // .. go to next tab
|
|
|
|
if (p_aiTabs[iT] != 0) // q. end of tab array?
|
|
{ // a. no ..
|
|
while (iO < (p_aiTabs[iT] - 1)) // fill to tab with blanks
|
|
*(p_szOutbuf + iO++) = ' '; // .. put in a blank
|
|
|
|
}
|
|
else // Otherwise ...
|
|
*(p_szOutbuf + iO++) = ' '; // .. Translate to blank
|
|
}
|
|
else // Otherwise .. not tab
|
|
*(p_szOutbuf + iO++) = cX; // .. save the input char
|
|
|
|
iI++; // next input character
|
|
}
|
|
|
|
*(p_szOutbuf + iO) = 0; // end the string..
|
|
return p_szOutbuf; // .. return output area addr
|
|
}
|
|
|
|
/////////////////////////////////////
|
|
// extract next token, modify pointer
|
|
|
|
char* GetToken(char* p_szOut, // output location
|
|
int p_iLen, // max output length
|
|
char**p_pszToken) // pointer to input token
|
|
{
|
|
int iI; // work integer
|
|
char* pszX; // work pointer
|
|
|
|
pszX = *p_pszToken; // get pointer to token
|
|
|
|
for (iI = 0; *(pszX + iI) && (!isspace(*(pszX + iI)));) // while not whitespace & not end
|
|
iI++; // .. count token length
|
|
|
|
memset(p_szOut, 0, p_iLen); // zero out output area
|
|
|
|
if (iI > 0) // q. any chars?
|
|
strncpy(p_szOut, *p_pszToken, MIN(iI, p_iLen-1)); // a. yes.. copy max of p_iLen-1
|
|
|
|
*p_pszToken += iI; // point beyond token
|
|
return p_szOut; // .. return token pointer
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////
|
|
// EditToAsm - convert tab-formatted text line to 1130 Assembler format
|
|
|
|
char *EditToAsm (char* p_pszEdit) // convert line to 1130 assembler
|
|
{
|
|
char pszLine[MAXLINE]; // source line
|
|
char pszWork[WORKSZ]; // work buffer
|
|
char acTFWrk[2]; // tag/format work area
|
|
size_t iI; // work integer
|
|
|
|
if (p_pszEdit == NULL) // q. null request?
|
|
return AMSG; // a. yes .. return display message
|
|
|
|
if (*p_pszEdit == '!') // leave lines starting with ! alone
|
|
return EditToWhitespace(p_pszEdit+1);
|
|
|
|
if (*p_pszEdit == '*') // q. comment line?
|
|
{ // a. yes..
|
|
strncpy(pszWork, EditToWhitespace(p_pszEdit), MAXLINE); // .. convert any tabs
|
|
sprintf(gszOutput, ACOMMENTFMT, pszWork); // .. put the comment out there in the opcode column
|
|
return gszOutput; // .. and return it
|
|
}
|
|
|
|
strncpy(pszLine, p_pszEdit, MAXLINE-1); // copy the line local
|
|
|
|
ExpandTabs(pszLine, pszWork, gaiAsmTabs); // expand the tabs
|
|
strncpy(pszLine, pszWork, MAXLINE-1); // copy the line back
|
|
|
|
for (iI = strlen(pszLine); iI--;) // trim trailing whitespace
|
|
{
|
|
if (*(pszLine + iI) <= ' ') // q. space or less?
|
|
*(pszLine + iI) = 0; // a. yes .. remove it
|
|
else // otherwise
|
|
break; // .. done. Leave loop.
|
|
}
|
|
|
|
if (strlen(pszLine) == 0) // q. blank line?
|
|
{ // a. yes .. Assembler abhors these so
|
|
sprintf(gszOutput, ABLANKLINE); // format as comment statement
|
|
return gszOutput; // .. and return it
|
|
}
|
|
|
|
|
|
// TODO: Add code to process a strip switch
|
|
// comment?
|
|
|
|
if (strlen(pszLine) > (TAGOFFSET + 1)) // q. line long enough?
|
|
{ // a. yes.. reorder tag/format
|
|
memcpy(acTFWrk, pszLine + FMTOFFSET, 2); // get tag/format
|
|
memset((pszLine + FMTOFFSET), ' ', 2); // .. blank 'em out
|
|
|
|
for (iI = 0; iI < 2; iI ++)
|
|
if (isalpha(acTFWrk[iI])) // q. alpha char?
|
|
*(pszLine + FMTOFFSET) = acTFWrk[iI]; // a. yes .. make it format
|
|
else if (isdigit(acTFWrk[iI])) // q. digit?
|
|
*(pszLine + TAGOFFSET) = acTFWrk[iI]; // a. yes .. make it the tag
|
|
}
|
|
|
|
sprintf(gszOutput, AFORMAT, pszLine); // format the line
|
|
|
|
return gszOutput; // return formatted line
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////
|
|
// EditToFortran - convert tab-formatted input text line to FORTRAN format
|
|
// (a la DEC Fortran)
|
|
|
|
char *EditToFortran(char* p_pszEdit) // convert line to 1130 assembler
|
|
{
|
|
char pszLine[MAXLINE]; // source line
|
|
char* pszWork; // work pointer
|
|
size_t iI; // work integer
|
|
char bContinue; // true if continue
|
|
|
|
if (p_pszEdit == NULL) // q. null request?
|
|
return FMSG; // a. yes .. return display message
|
|
|
|
if (strchr(p_pszEdit, '\t') == NULL) // q. no tab in the line?
|
|
return p_pszEdit; // a. nope, return line as is, assume it's formatted correctly
|
|
|
|
if (*p_pszEdit == 'C' || *p_pszEdit == '*' || *p_pszEdit == '\0') // q. comment or directive or blank line?
|
|
{ // a. yes.. don't restructure
|
|
return EditToWhitespace(p_pszEdit);
|
|
}
|
|
|
|
strncpy(pszLine, p_pszEdit, MAXLINE-1); // copy the line local
|
|
|
|
for (iI = strlen(pszLine); iI--;) // trim trailing whitespace
|
|
{
|
|
if (*(pszLine + iI) <= ' ') // q. space or less?
|
|
*(pszLine + iI) = 0; // a. yes .. remove it
|
|
else // otherwise
|
|
break; // .. done. Leave loop.
|
|
}
|
|
|
|
// TODO: Add code to process a strip switch
|
|
// comment?
|
|
|
|
pszWork = (char*) pszLine; // set pointer to line
|
|
GetToken(gszLabel, 6, &pszWork); // get the line, if any.
|
|
|
|
pszWork++; // skip tab/whitespace
|
|
|
|
// continuation...
|
|
bContinue = ((isdigit(*pszWork) && (*pszWork != '0')) // if first char non-zero digit
|
|
|| (!isspace(*pszWork) && !isalpha(*pszWork))); // .. or non-alpha non-blank
|
|
|
|
memset(gszArg, 0, MAXLINE); // .. and arguments
|
|
|
|
strncpy(gszArg, pszWork, 75); // copy rest to argument
|
|
|
|
sprintf(gszOutput, (bContinue) ? FCONTFMT : FFORMAT, // format the line
|
|
gszLabel, // .. statement #
|
|
gszArg); // .. code
|
|
|
|
return gszOutput; // return formatted line
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////
|
|
// EditToWhitespace - expand tabs at 8 space intervals.
|
|
|
|
char* EditToWhitespace(char *p_pszEdit)
|
|
{
|
|
int iI; /* work integer */
|
|
char pszLine[MAXLINE]; // source line
|
|
char pszWork[WORKSZ]; // work buffer
|
|
|
|
if (p_pszEdit == NULL) // q. null request?
|
|
return AMSG; // a. yes .. return display message
|
|
|
|
strncpy(pszLine, p_pszEdit, MAXLINE-1); // copy the line local
|
|
|
|
ExpandTabs(pszLine, pszWork, gaiPlainTabs); // expand the tabs
|
|
strncpy(gszOutput, pszWork, MAXLINE-1); // copy the line back
|
|
|
|
for (iI = strlen(gszOutput); iI--;) // look at each character
|
|
{
|
|
if (*(gszOutput + iI) <= ' ') // q. space or less?
|
|
*(gszOutput + iI) = 0; // a. yes .. remove it
|
|
else // otherwise
|
|
break; // .. done. Leave loop.
|
|
}
|
|
|
|
|
|
return gszOutput; /* ... return buffer */
|
|
}
|