simh-testsetgenerator/PDP10/kx10_lp.c

556 lines
19 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* kx10_lp.c: PDP-10 line printer simulator
Copyright (c) 2011-2020, Richard Cornwell
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
RICHARD CORNWELL 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 Richard Cornwell shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from Richard Cornwell.
*/
#include "kx10_defs.h"
#include <ctype.h>
#ifndef NUM_DEVS_LP
#define NUM_DEVS_LP 0
#endif
#if (NUM_DEVS_LP > 0)
#if KL
#define LP_DIS DEV_DIS
#endif
#ifndef LP_DIS
#define LP_DIS 0
#endif
#define LP_DEVNUM 0124
#define STATUS u3
#define COL u4
#define POS u5
#define LINE u6
#define MARGIN 6
#define UNIT_V_CT (UNIT_V_UF + 0)
#define UNIT_CT (3 << UNIT_V_CT)
#define UNIT_UC (1 << UNIT_V_CT)
#define UNIT_UTF8 (2 << UNIT_V_CT)
#define UNIT_WA (3 << UNIT_V_CT)
#define PI_DONE 000007
#define PI_ERROR 000070
#define DONE_FLG 000100
#define BUSY_FLG 000200
#define ERR_FLG 000400
#define CLR_LPT 002000
#define C96 002000
#define C128 004000
#define DEL_FLG 0100000
t_stat lpt_devio(uint32 dev, uint64 *data);
t_stat lpt_svc (UNIT *uptr);
t_stat lpt_reset (DEVICE *dptr);
t_stat lpt_attach (UNIT *uptr, CONST char *cptr);
t_stat lpt_detach (UNIT *uptr);
t_stat lpt_setlpp(UNIT *, int32, CONST char *, void *);
t_stat lpt_getlpp(FILE *, UNIT *, int32, CONST void *);
t_stat lpt_setdev(UNIT *, int32, CONST char *, void *);
t_stat lpt_getdev(FILE *, UNIT *, int32, CONST void *);
t_stat lpt_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag,
const char *cptr);
const char *lpt_description (DEVICE *dptr);
char lpt_buffer[134 * 3];
uint8 lpt_chbuf[5]; /* Read in Character buffers */
/* LPT data structures
lpt_dev LPT device descriptor
lpt_unit LPT unit descriptor
lpt_reg LPT register list
*/
DIB lpt_dib = { LP_DEVNUM, 1, &lpt_devio, NULL };
UNIT lpt_unit = {
UDATA (&lpt_svc, UNIT_SEQ+UNIT_ATTABLE+UNIT_TEXT, 66), 100
};
REG lpt_reg[] = {
{ URDATA (STATUS, lpt_unit.STATUS, 8, 18, 0, 1, PV_LEFT) },
{ URDATA (TIME, lpt_unit.wait, 10, 24, 0, 1, PV_LEFT) },
{ BRDATA(BUFF, lpt_buffer, 16, 8, sizeof(lpt_buffer)), REG_HRO},
{ BRDATA(CBUFF, lpt_chbuf, 16, 8, sizeof(lpt_chbuf)), REG_HRO},
{ NULL }
};
MTAB lpt_mod[] = {
{UNIT_CT, 0, "Lower case", "LC", NULL},
{UNIT_CT, UNIT_UC, "Upper case", "UC", NULL, NULL, NULL, "Fold lower to upper case"},
{UNIT_CT, UNIT_UTF8, "UTF8 ouput", "UTF8", NULL, NULL, NULL, "Extended character set"},
{UNIT_CT, UNIT_WA, "WAITS ouput", "WAITS", NULL, NULL, NULL, "Waits character set"},
{MTAB_XTD|MTAB_VUN|MTAB_VALR, 0, "LINESPERPAGE", "LINESPERPAGE",
&lpt_setlpp, &lpt_getlpp, NULL, "Number of lines per page"},
{MTAB_XTD|MTAB_VUN|MTAB_VALR, 0, "DEV", "DEV",
&lpt_setdev, &lpt_getdev, NULL, "Device address of printer defualt 124"},
{ 0 }
};
DEVICE lpt_dev = {
"LPT", &lpt_unit, lpt_reg, lpt_mod,
1, 10, 31, 1, 8, 8,
NULL, NULL, &lpt_reset,
NULL, &lpt_attach, &lpt_detach,
&lpt_dib, DEV_DISABLE | DEV_DEBUG | LP_DIS, 0, dev_debug,
NULL, NULL, &lpt_help, NULL, NULL, &lpt_description
};
/* IOT routine */
t_stat lpt_devio(uint32 dev, uint64 *data) {
UNIT *uptr = &lpt_unit;
switch(dev & 3) {
case CONI:
*data = uptr->STATUS & (PI_DONE|PI_ERROR|DONE_FLG|BUSY_FLG|ERR_FLG);
if ((uptr->flags & UNIT_UC) == 0)
*data |= C96;
if ((uptr->flags & UNIT_UTF8) != 0)
*data |= C128;
if ((uptr->flags & UNIT_ATT) == 0)
*data |= ERR_FLG;
sim_debug(DEBUG_CONI, &lpt_dev, "LP CONI %012llo PC=%06o\n", *data, PC);
break;
case CONO:
clr_interrupt(dev);
sim_debug(DEBUG_CONO, &lpt_dev, "LP CONO %012llo PC=%06o\n", *data, PC);
uptr->STATUS &= ~0777;
uptr->STATUS |= ((PI_DONE|PI_ERROR|DONE_FLG|BUSY_FLG|CLR_LPT) & *data);
if (*data & CLR_LPT) {
uptr->STATUS &= ~DONE_FLG;
uptr->STATUS |= BUSY_FLG;
sim_activate (&lpt_unit, lpt_unit.wait);
}
if ((uptr->flags & UNIT_ATT) == 0) {
uptr->STATUS |= ERR_FLG;
set_interrupt(dev, (uptr->STATUS >> 3));
}
if ((uptr->STATUS & DONE_FLG) != 0)
set_interrupt(dev, uptr->STATUS);
break;
case DATAO:
if ((uptr->STATUS & DONE_FLG) != 0) {
int i, j;
for (j = 0, i = 29; i > 0; i-=7)
lpt_chbuf[j++] = ((uint8)(*data >> i)) & 0x7f;
uptr->STATUS &= ~DONE_FLG;
uptr->STATUS |= BUSY_FLG;
clr_interrupt(dev);
sim_activate (&lpt_unit, lpt_unit.wait);
sim_debug(DEBUG_DATAIO, &lpt_dev, "LP DATO %012llo PC=%06o\n", *data, PC);
}
break;
case DATAI:
*data = 0;
break;
}
return SCPE_OK;
}
void
lpt_printline(UNIT *uptr, int nl) {
int trim = 0;
/* Trim off trailing blanks */
while (uptr->COL >= 0 && lpt_buffer[uptr->POS - 1] == ' ') {
uptr->COL--;
uptr->POS--;
trim = 1;
}
lpt_buffer[uptr->POS] = '\0';
sim_debug(DEBUG_DETAIL, &lpt_dev, "LP output %d %d [%s]\n", uptr->COL, nl, lpt_buffer);
/* Stick a carraige return and linefeed as needed */
if (uptr->COL != 0 || trim)
lpt_buffer[uptr->POS++] = '\r';
if (nl != 0) {
lpt_buffer[uptr->POS++] = '\n';
uptr->LINE++;
}
if (nl > 0 && uptr->LINE >= ((int32)uptr->capac - MARGIN)) {
lpt_buffer[uptr->POS++] = '\f';
uptr->LINE = 0;
} else if (nl < 0 && uptr->LINE >= (int32)uptr->capac) {
uptr->LINE = 0;
}
sim_fwrite(&lpt_buffer, 1, uptr->POS, uptr->fileref);
uptr->pos += uptr->POS;
uptr->COL = 0;
uptr->POS = 0;
if (ferror (uptr->fileref)) { /* error? */
perror ("LPT I/O error");
clearerr (uptr->fileref);
uptr->STATUS |= ERR_FLG;
set_interrupt(LP_DEVNUM, (uptr->STATUS >> 3));
return;
}
return;
}
uint16 utf_code[32] = {
0x00b7, /* 000 - Dot */
0x2193, /* 001 - Down arrow */
0x03b1, /* 002 - Alpha */
0x03b2, /* 003 - Beta */
0x039b, /* 004 - Lambda */
0x2510, /* 005 - Box light down and left */
0x03b5, /* 006 - Epsilon */
0x03d6, /* 007 - Pi */
0x03bb, /* 010 - Lambda */
0x03b3, /* 011 - small gamma */
0x221d, /* 012 - proportional */
0x222b, /* 013 - Integral */
0x00b1, /* 014 - Plus minus */
0x2295, /* 015 - Circle plus */
0x221e, /* 016 - Infinity */
0x2202, /* 017 - Partial derivitive */
0x2282, /* 020 - Subset of */
0x2283, /* 021 - Superset of */
0x2229, /* 022 - Intersection */
0x222a, /* 023 - union */
0x2200, /* 024 - For all */
0x2203, /* 025 - Exists */
0x2295, /* 026 - Circle plus */
0x2194, /* 027 - Left right arrow */
0x2227, /* 030 - Logical and */
0x2192, /* 031 - Rightwards arror */
0x2014, /* 032 - Em dash */
0x2260, /* 033 - Not equal */
0x2264, /* 034 - Less than or equal */
0x2265, /* 035 - Greater than or equal */
0x2261, /* 036 - Identical too */
0x2228 /* 037 - Logical or */
};
uint16 waits_code[32] = {
0x00b7, /* 000 - Dot */
0x2193, /* 001 - Down arrow */
0x03b1, /* 002 - Alpha */
0x03b2, /* 003 - Beta */
0x2227, /* 004 - Boolean AND */
0x00ac, /* 005 - Boolean NOT */
0x03b5, /* 006 - Epsilon */
0x03d6, /* 007 - Pi */
0x03bb, /* 010 - Lambda */
0x03b3, /* 011 - small gamma */
0x03b4, /* 012 - small delta */
0x222b, /* 013 - Integral */
0x00b1, /* 014 - Plus minus */
0x2295, /* 015 - Circle plus */
0x221e, /* 016 - Infinity */
0x2202, /* 017 - Partial derivitive */
0x2282, /* 020 - Subset of */
0x2283, /* 021 - Superset of */
0x2229, /* 022 - Intersection */
0x222a, /* 023 - union */
0x2200, /* 024 - For all */
0x2203, /* 025 - Exists */
0x2295, /* 026 - Circle plus */
0x2194, /* 027 - Left right arrow */
0x2190, /* 030 - underscore */
0x2192, /* 031 - Rightwards arror */
0x2191, /* 032 - Tilde */
0x2260, /* 033 - Not equal */
0x2264, /* 034 - Less than or equal */
0x2265, /* 035 - Greater than or equal */
0x2261, /* 036 - Identical too */
0x2228 /* 037 - Logical or */
};
/* Unit service */
void
lpt_output(UNIT *uptr, char c) {
if (c == 0)
return;
if (uptr->COL == 132)
lpt_printline(uptr, 1);
if (((uptr->flags & UNIT_CT) == UNIT_UC) && (c & 0140) == 0140)
c &= 0137;
if (((uptr->flags & UNIT_CT) == UNIT_UTF8) && c < 040) {
uint16 u = utf_code[c & 0x1f];
if (u > 0x7ff) {
lpt_buffer[uptr->POS++] = 0xe0 + ((u >> 12) & 0xf);
lpt_buffer[uptr->POS++] = 0x80 + ((u >> 6) & 0x3f);
lpt_buffer[uptr->POS++] = 0x80 + (u & 0x3f);
} else if (u > 0x7f) {
lpt_buffer[uptr->POS++] = 0xc0 + ((u >> 6) & 0x3f);
lpt_buffer[uptr->POS++] = 0x80 + (u & 0x3f);
} else {
lpt_buffer[uptr->POS++] = u & 0x7f;
}
uptr->COL++;
} else if ((uptr->flags & UNIT_CT) == UNIT_WA) {
uint16 u = c & 0x7f;
if (c < 040)
u = waits_code[c & 0x1f];
else if (c == 0136) /* up arrow */
u = 0x2191;
if (u > 0x7ff) {
lpt_buffer[uptr->POS++] = 0xe0 + ((u >> 12) & 0xf);
lpt_buffer[uptr->POS++] = 0x80 + ((u >> 6) & 0x3f);
lpt_buffer[uptr->POS++] = 0x80 + (u & 0x3f);
} else if (u > 0x7f) {
lpt_buffer[uptr->POS++] = 0xc0 + ((u >> 6) & 0x3f);
lpt_buffer[uptr->POS++] = 0x80 + (u & 0x3f);
} else {
lpt_buffer[uptr->POS++] = u & 0x7f;
}
uptr->COL++;
} else if (c >= 040 && c < 0177) {
lpt_buffer[uptr->POS++] = c;
uptr->COL++;
}
return;
}
t_stat lpt_svc (UNIT *uptr)
{
char c;
int pos;
int cpos;
if ((uptr->flags & DONE_FLG) != 0) {
set_interrupt(LP_DEVNUM, uptr->STATUS);
return SCPE_OK;
}
if ((uptr->flags & UNIT_ATT) == 0) {
uptr->STATUS |= ERR_FLG;
set_interrupt(LP_DEVNUM, (uptr->STATUS >> 3));
return SCPE_OK;
}
if (uptr->STATUS & CLR_LPT) {
for (pos = 0; pos < uptr->COL; lpt_buffer[pos++] = ' ');
uptr->POS = uptr->COL;
lpt_printline(uptr, 0);
uptr->STATUS &= ~(DEL_FLG|ERR_FLG|BUSY_FLG|CLR_LPT);
uptr->STATUS |= DONE_FLG;
set_interrupt(LP_DEVNUM, uptr->STATUS);
return SCPE_OK;
}
for (cpos = 0; cpos < 5; cpos++) {
c = lpt_chbuf[cpos];
if (uptr->STATUS & DEL_FLG) {
lpt_output(uptr, c);
uptr->STATUS &= ~DEL_FLG;
} else if (c == 0177) { /* Check for DEL Character */
uptr->STATUS |= DEL_FLG;
} else if (c < 040) { /* Control character */
switch(c) {
case 011: /* Horizontal tab, space to 8'th column */
lpt_output(uptr, ' ');
while ((uptr->COL & 07) != 0)
lpt_output(uptr, ' ');
break;
case 015: /* Carriage return, print line */
lpt_printline(uptr, 0);
break;
case 012: /* Line feed, print line, space one line */
lpt_printline(uptr, 1);
break;
case 014: /* Form feed, skip to top of page */
lpt_printline(uptr, 0);
sim_fwrite("\014", 1, 1, uptr->fileref);
uptr->pos++;
uptr->LINE = 0;
break;
case 013: /* Vertical tab, Skip mod 20 */
lpt_printline(uptr, 1);
while((uptr->LINE % 20) != 0) {
sim_fwrite("\r\n", 1, 2, uptr->fileref);
uptr->pos+=2;
uptr->LINE++;
}
break;
case 020: /* Skip half page */
lpt_printline(uptr, 1);
while((uptr->LINE % 30) != 0) {
sim_fwrite("\r\n", 1, 2, uptr->fileref);
uptr->pos+=2;
uptr->LINE++;
}
break;
case 021: /* Skip even lines */
lpt_printline(uptr, 1);
while((uptr->LINE % 2) != 0) {
sim_fwrite("\r\n", 1, 2, uptr->fileref);
uptr->pos+=2;
uptr->LINE++;
}
break;
case 022: /* Skip triple lines */
lpt_printline(uptr, 1);
while((uptr->LINE % 3) != 0) {
sim_fwrite("\r\n", 1, 2, uptr->fileref);
uptr->pos+=2;
uptr->LINE++;
}
break;
case 023: /* Skip one line */
lpt_printline(uptr, -1);
break;
default: /* Ignore */
break;
}
} else {
lpt_output(uptr, c);
}
}
uptr->STATUS &= ~BUSY_FLG;
uptr->STATUS |= DONE_FLG;
set_interrupt(LP_DEVNUM, uptr->STATUS);
return SCPE_OK;
}
/* Reset routine */
t_stat lpt_reset (DEVICE *dptr)
{
UNIT *uptr = &lpt_unit;
uptr->POS = 0;
uptr->COL = 0;
uptr->LINE = 1;
uptr->STATUS = DONE_FLG;
clr_interrupt(LP_DEVNUM);
sim_cancel (&lpt_unit); /* deactivate unit */
return SCPE_OK;
}
/* Attach routine */
t_stat lpt_attach (UNIT *uptr, CONST char *cptr)
{
t_stat reason;
sim_switches |= SWMASK ('A'); /* Position to EOF */
reason = attach_unit (uptr, cptr);
if (sim_switches & SIM_SW_REST)
return reason;
uptr->STATUS &= ~ERR_FLG;
clr_interrupt(LP_DEVNUM);
return reason;
}
/* Detach routine */
t_stat lpt_detach (UNIT *uptr)
{
uptr->STATUS |= ERR_FLG;
set_interrupt(LP_DEVNUM, uptr->STATUS >> 3);
return detach_unit (uptr);
}
/*
* Line printer routines
*/
t_stat
lpt_setlpp(UNIT *uptr, int32 val, CONST char *cptr, void *desc)
{
t_value i;
t_stat r;
if (cptr == NULL)
return SCPE_ARG;
if (uptr == NULL)
return SCPE_IERR;
i = get_uint (cptr, 10, 100, &r);
if (r != SCPE_OK)
return SCPE_ARG;
uptr->capac = (t_addr)i;
uptr->LINE = 0;
return SCPE_OK;
}
t_stat
lpt_getlpp(FILE *st, UNIT *uptr, int32 v, CONST void *desc)
{
if (uptr == NULL)
return SCPE_IERR;
fprintf(st, "linesperpage=%d", uptr->capac);
return SCPE_OK;
}
t_stat
lpt_setdev(UNIT *uptr, int32 val, CONST char *cptr, void *desc)
{
t_value i;
t_stat r;
if (cptr == NULL)
return SCPE_ARG;
if (uptr == NULL)
return SCPE_IERR;
i = get_uint (cptr, 8, 01000, &r);
if (r != SCPE_OK)
return SCPE_ARG;
if ((i & 03) != 0)
return SCPE_ARG;
lpt_dib.dev_num = (int)i;
return SCPE_OK;
}
t_stat
lpt_getdev(FILE *st, UNIT *uptr, int32 v, CONST void *desc)
{
if (uptr == NULL)
return SCPE_IERR;
fprintf(st, "dev=%03o", lpt_dib.dev_num);
return SCPE_OK;
}
t_stat lpt_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cptr)
{
fprintf (st, "Line Printer (LPT)\n\n");
fprintf (st, "The line printer (LPT) writes data to a disk file. The POS register specifies\n");
fprintf (st, "the number of the next data item to be written. Thus, by changing POS, the\n");
fprintf (st, "user can backspace or advance the printer.\n");
fprintf (st, "The Line printer can be configured to any number of lines per page with the:\n");
fprintf (st, " sim> SET %s0 LINESPERPAGE=n\n\n", dptr->name);
fprintf (st, "The default is 66 lines per page.\n\n");
fprintf (st, "The device address of the Line printer can be changed\n");
fprintf (st, " sim> SET %s0 DEV=n\n\n", dptr->name);
fprint_set_help (st, dptr);
fprint_show_help (st, dptr);
fprint_reg_help (st, dptr);
return SCPE_OK;
}
const char *lpt_description (DEVICE *dptr)
{
return "LP10 line printer" ;
}
#endif