1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-23 19:06:47 +00:00

KA10: Cleanup Windows build warning.

This commit is contained in:
Richard Cornwell 2023-01-17 19:25:40 -05:00
parent e42f503b19
commit dee2c0781d
3 changed files with 8 additions and 10 deletions

View File

@ -222,7 +222,6 @@ int
ch11_read(DEVICE *dptr, t_addr addr, uint16 *data, int32 access)
{
struct pdp_dib *dibp = (DIB *)dptr->ctxt;
int i;
addr &= dibp->uba_mask;
*data = 0;

View File

@ -13755,6 +13755,7 @@ t_stat cpu_detach (UNIT *uptr)
#if PIDP10
pi_panel_stop();
#endif
return SCPE_OK;
}
/* Memory size change */

View File

@ -191,8 +191,8 @@ static t_stat tym_detach(UNIT *uptr)
static uint64 word(int pointer, int base)
{
int address = M[tym_base + base] >> 4;
address += M[tym_base + pointer];
t_addr address = (M[tym_base + base] >> 4) & RMASK;
address += M[tym_base + pointer] & RMASK;
return M[address];
}
@ -204,12 +204,12 @@ static void next(int pointer, int size)
static void tym_input(uint64 data)
{
int address = M[tym_base + IRNG] >> 4;
address += M[tym_base + IBP];
t_addr address = (M[tym_base + IRNG] >> 4) & RMASK;
address += M[tym_base + IBP] & RMASK;
M[address] = data;
}
static unsigned room (int h, int t, int s)
static uint64 room (int h, int t, int s)
{
uint64 head = M[tym_base + h];
uint64 tail = M[tym_base + t];
@ -528,8 +528,7 @@ static void output_data(int port, int n)
data = word(OBP, ORNG);
start:
for (; i < 4 && n > 0; i++, n--) {
c = data >> 28;
c &= 0177;
c = (data >> 28) & 0177;
data <<= 8;
sim_debug(DEBUG_DATA, &tym_dev,
"Host: send port %d %03o '%c'.\n", port, c, c);
@ -665,8 +664,7 @@ static t_stat tym_output_srv(UNIT *uptr)
data = word(OBP, ORNG);
c = data >> 28;
c &= 0177;
c = (data >> 28) & 0177;
data <<= 8;
sim_debug(DEBUG_DATA, &tym_dev,
"Host: send port %d %03o '%c'.\n", output_port, c, c);