1
0
mirror of https://github.com/simh/simh.git synced 2026-02-27 09:09:46 +00:00

SWTP: Fix Coverity found missing argument in M6800

This commit is contained in:
Bill Beech
2022-03-15 15:44:13 -07:00
parent b779bfc1cd
commit af6665be05

View File

@@ -1464,6 +1464,7 @@ t_stat sim_instr (void)
break;
case 0xD2: /* SBC B dir */
lo = get_dir_val() + get_flag(CF);
op1 = B;
B = B - lo;
COND_SET_FLAG_C(B);
B &= 0xFF;