1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-04 15:16:06 +00:00

Compiler suggested cleanups

This commit is contained in:
Mark Pizzolato
2012-11-30 13:22:15 -08:00
parent 223e3e0254
commit c6c66487ac
9 changed files with 21 additions and 20 deletions

View File

@@ -366,7 +366,7 @@ int32 sim_instr (void)
if ((OP & 0xCF) == 0x01) { /* LXI */
DAR = M[PC] & 0x00ff;
PC++;
DAR = DAR | (M[PC] <<8) & 0xFF00;;
DAR = DAR | ((M[PC] <<8) & 0xFF00);
putpair((OP >> 4) & 0x03, DAR);
PC++;
continue;