mirror of
https://github.com/simh/simh.git
synced 2026-01-11 23:52:58 +00:00
PDP11: Remove stray tab characters in DZ, MB & TV
This commit is contained in:
parent
0429c25ae7
commit
8538161757
@ -72,7 +72,6 @@
|
||||
#define DZ_8B_DFLT TT_MODE_8B
|
||||
#endif
|
||||
|
||||
#include "sim_sock.h"
|
||||
#include "sim_tmxr.h"
|
||||
|
||||
#if !defined (DZ_MUXES)
|
||||
@ -840,8 +839,8 @@ for (dz = 0; dz < dz_desc.lines/DZ_LINES; dz++) {
|
||||
for (muxln = 0; muxln < DZ_LINES; muxln++) {
|
||||
TMLN *lp = &dz_ldsc[(dz * DZ_LINES) + muxln];
|
||||
|
||||
if (lp->serconfig)
|
||||
tmxr_set_config_line (lp, lp->serconfig); /* make settings consistent */
|
||||
if (lp->serconfig)
|
||||
tmxr_set_config_line (lp, lp->serconfig); /* make settings consistent */
|
||||
}
|
||||
if (!dz_mctl || (0 == (dz_csr[dz] & CSR_MSE))) /* enabled? */
|
||||
continue;
|
||||
@ -869,10 +868,10 @@ for (dz = 0; dz < dz_desc.lines/DZ_LINES; dz++) {
|
||||
for (muxln = 0; muxln < DZ_LINES; muxln++) {
|
||||
TMLN *lp = &dz_ldsc[(dz * DZ_LINES) + muxln];
|
||||
|
||||
free (lp->serconfig);
|
||||
lp->serconfig = NULL;
|
||||
free (lp->serconfig);
|
||||
lp->serconfig = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
|
||||
@ -46,17 +46,17 @@ static uint32 history[HSIZE];
|
||||
/* BITS IN MBCSR */
|
||||
#define MBINTE 0100
|
||||
#define MBAFRZ 0200
|
||||
#define MBXAYR 0400 /* X<A<Y READ TRAP */
|
||||
#define MBXAYW 01000 /* X<A<Y WRITE TRAP */
|
||||
#define MBNOIN 02000 /* IGNORE INIT */
|
||||
#define MBINAO 04000 /* INTERRUPT ON ALMOST OVERFLOW */
|
||||
#define MBXAYR 0400 /* X<A<Y READ TRAP */
|
||||
#define MBXAYW 01000 /* X<A<Y WRITE TRAP */
|
||||
#define MBNOIN 02000 /* IGNORE INIT */
|
||||
#define MBINAO 04000 /* INTERRUPT ON ALMOST OVERFLOW */
|
||||
|
||||
/* BITS IN MBXHGH AND MBYHGH*/
|
||||
#define MBREDT 04 /* READ TRAP BIT */
|
||||
#define MBWRTT 010 /* WRITE TRAP BIT */
|
||||
#define MBREDT 04 /* READ TRAP BIT */
|
||||
#define MBWRTT 010 /* WRITE TRAP BIT */
|
||||
|
||||
/* BITS IN MBHHGH */
|
||||
#define MBWRTB 04 /* WRITE BIT IN HISTORY MEMORY HIGH BITS */
|
||||
#define MBWRTB 04 /* WRITE BIT IN HISTORY MEMORY HIGH BITS */
|
||||
|
||||
#define IOLN_MB 020
|
||||
DIB mb_dib = {
|
||||
|
||||
@ -77,14 +77,14 @@ static uint16 RAM[64*FB];
|
||||
#define TVINC 0077 /* Mask for the increment. */
|
||||
|
||||
/* TVSEL bits. */
|
||||
#define TVRCNS 0077 /* The console number mask. */
|
||||
#define TVRCNS 0077 /* The console number mask. */
|
||||
#define TVNSH 0000 /* No shift write mode. */
|
||||
#define TVIOR 0100 /* The inclusive or mode. */
|
||||
#define TVXOR 0200 /* The xor mode. */
|
||||
#define TVMOV 0300 /* The move function. */
|
||||
#define TVIOR 0100 /* The inclusive or mode. */
|
||||
#define TVXOR 0200 /* The xor mode. */
|
||||
#define TVMOV 0300 /* The move function. */
|
||||
|
||||
/* TVSHR bits. */
|
||||
#define TVSHCN 0017 /* The shift count. */
|
||||
#define TVSHCN 0017 /* The shift count. */
|
||||
|
||||
/* TVCNSL bits. */
|
||||
#define SCROLL 007777 /* Scroll pointer. */
|
||||
@ -180,8 +180,7 @@ render_display (uint16 display)
|
||||
int i;
|
||||
if (display >= TV_WINDOWS)
|
||||
return;
|
||||
sim_debug (DBG_VID, &tv_dev, "Render display %d buffer %d\n",
|
||||
display, buffer);
|
||||
sim_debug (DBG_VID, &tv_dev, "Render display %d buffer %d\n", display, buffer);
|
||||
for (i = 0; i < (TV_PIXELS / 8); i += 2)
|
||||
render_word (buffer, i);
|
||||
tv_updated[display] = 1;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user