1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-04-03 12:22:52 +00:00

I7000: Added UNIT_SEQ to card punch and line printer to support append.

This commit is contained in:
Richard Cornwell
2020-09-05 12:06:39 -04:00
parent 26fc1594e6
commit 4986238514
4 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@
#include "sim_defs.h"
#ifdef NUM_DEVS_CDP
#define UNIT_CDP UNIT_ATTABLE | UNIT_DISABLE | MODE_026
#define UNIT_CDP UNIT_ATTABLE | UNIT_DISABLE | UNIT_SEQ | MODE_026
/* Flags for punch and reader. */

View File

@@ -34,7 +34,7 @@
#include "sim_defs.h"
#ifdef NUM_DEVS_LPR
#define UNIT_LPR UNIT_ATTABLE | UNIT_DISABLE
#define UNIT_LPR UNIT_ATTABLE | UNIT_DISABLE | UNIT_SEQ
/* Flags for line printer. */

View File

@@ -26,7 +26,7 @@
#include "i7090_defs.h"
#include "sim_card.h"
#ifdef NUM_DEVS_CDP
#define UNIT_CDP UNIT_ATTABLE | UNIT_DISABLE
#define UNIT_CDP UNIT_ATTABLE | UNIT_DISABLE | UNIT_SEQ
/* std devices. data structures

View File

@@ -40,7 +40,7 @@
#ifdef NUM_DEVS_LPR
#define UNIT_LPR UNIT_ATTABLE | UNIT_DISABLE
#define UNIT_LPR UNIT_ATTABLE | UNIT_DISABLE | UNIT_SEQ
#define ECHO (1 << UNIT_V_LOCAL)