1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-18 17:07:59 +00:00

IBM360: Fixed compile issue with Windows.

This commit is contained in:
Richard Cornwell 2021-07-03 15:48:07 -04:00
parent c0339c4c60
commit 54c42ba072

View File

@ -440,7 +440,7 @@ storepsw(uint32 addr, uint16 ircode)
break;
}
if (ircode & IRC_PER) {
M[150 >> 2] = ((uint32_t)per_code << 16) | (per_addr >> 16);
M[150 >> 2] = ((uint32)per_code << 16) | (per_addr >> 16);
M[154 >> 2] = ((per_addr & 0xffff) << 16) | (M[154 >> 2] & 0xFFFF);
}
} else { /* IBM 360/67 under EC mode */