1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-04-16 08:27:01 +00:00

KA10: Added ignore of tab character to III display.

This commit is contained in:
Richard Cornwell
2020-02-22 15:36:28 -05:00
parent f50190ba5e
commit 3c7a609fed
2 changed files with 5 additions and 3 deletions

View File

@@ -429,6 +429,8 @@ iii_svc (UNIT *uptr)
lx = ox;
ly = oy + cy;
sim_debug(DEBUG_DATA, &iii_dev, "III: ch %d %d %o %o %o\n", lx, ly, ch, sz, br);
if (ch == '\t')
continue;
if (ch == '\r') {
ox = -512;
continue;

View File

@@ -1,6 +1,6 @@
/* ka10_defs.h: PDP-10 simulator definitions
/* kx10_defs.h: PDP-10 simulator definitions
Copyright (c) 2011-2017, Richard Cornwell
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"),
@@ -615,7 +615,7 @@ int auxcpu_write (t_addr addr, t_uint64);
#define NUM_DEVS_TU 1
#define NUM_DEVS_PMP WAITS
#define NUM_DEVS_DKB WAITS
#define NUM_DEVS_III 0 /* (WAITS * USE_DISPLAY) *//* Disabled until working */
#define NUM_DEVS_III (WAITS * USE_DISPLAY) /* Disabled until working */
#define NUM_DEVS_PD ITS | KL_ITS
#define NUM_DEVS_IMX ITS
#define NUM_DEVS_STK ITS