Move bitwise `|` to start of next line in Emulation.Cores

This commit is contained in:
YoshiRulz 2025-06-12 23:00:45 +10:00
parent de08716aff
commit b61769b136
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
4 changed files with 19 additions and 24 deletions

View File

@ -1614,9 +1614,9 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
_position++;
int blockLen = data[_position] |
data[_position + 1] << 8 |
data[_position + 2] << 16;
var blockLen = data[_position]
| (data[_position + 1] << 8)
| (data[_position + 2] << 16);
_position += 3;
// add to tape

View File

@ -1960,9 +1960,9 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
_position++;
int blockLen = data[_position] |
data[_position + 1] << 8 |
data[_position + 2] << 16;
var blockLen = data[_position]
| (data[_position + 1] << 8)
| (data[_position + 2] << 16);
_position += 3;
// add to tape

View File

@ -113,14 +113,14 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk
if (port == 1)
{
// various control pins
return (byte)((ppu.lum_en ? 0x80 : 0) |
(copy_en ? 0x40 : 0) |
(!vpp_en ? 0x20 : 0) |
(!RAM_en ? 0x10 : 0) |
(!ppu_en ? 0x08 : 0) |
(!kybrd_en ? 0x04 : 0) |
(cart_b1 ? 0x02 : 0) |
(cart_b0 ? 0x01 : 0));
return unchecked((byte) ((ppu.lum_en ? 0x80 : 0)
| (copy_en ? 0x40 : 0)
| (!vpp_en ? 0x20 : 0)
| (!RAM_en ? 0x10 : 0)
| (!ppu_en ? 0x08 : 0)
| (!kybrd_en ? 0x04 : 0)
| (cart_b1 ? 0x02 : 0)
| (cart_b0 ? 0x01 : 0)));
}
// keyboard

View File

@ -18,16 +18,11 @@
}
private byte Unscramble(byte data)
{
return (byte)
(
(data >> 1 & 0x01) |
(data >> 4 & 0x02) |
(data << 2 & 0x04) |
(data >> 0 & 0xD8) |
(data << 3 & 0x20)
);
}
=> unchecked((byte) (((data >> 1) & 0x01)
| ((data >> 4) & 0x02)
| ((data << 2) & 0x04)
| (data & 0xD8)
| ((data << 3) & 0x20)));
public override void WritePrg(int addr, byte value)
{