mirror of
https://github.com/simh/simh.git
synced 2026-02-07 00:38:04 +00:00
PDP10, ETHER, VIDEO, VAX: Fix set but unused variables.
This commit is contained in:
committed by
Mark Pizzolato
parent
86889c662c
commit
970fb8ec95
@@ -329,7 +329,6 @@ int32 rz_rd (int32 pa)
|
||||
int32 ctlr = (pa >> 8) & 1;
|
||||
CTLR *rz = rz_ctxmap[ctlr];
|
||||
DEVICE *dptr = rz_devmap[ctlr];
|
||||
UNIT *uptr = dptr->units + RZ_CTLR;
|
||||
int32 rg = (pa >> 2) & 0x1F;
|
||||
int32 data = 0;
|
||||
int32 len;
|
||||
|
||||
@@ -188,8 +188,6 @@ void va_erase (uint32 x0, uint32 x1, uint32 y0, uint32 y1);
|
||||
|
||||
void va_adpstat (uint32 set, uint32 clr)
|
||||
{
|
||||
uint32 chg = (va_adp[ADP_STAT] ^ set) & set;
|
||||
|
||||
if (va_adp[ADP_INT] & set) /* unmasked ints 0->1? */
|
||||
va_setint (INT_ADP);
|
||||
va_adp[ADP_STAT] = va_adp[ADP_STAT] | set;
|
||||
|
||||
Reference in New Issue
Block a user