Skip to content

Commit 5ca888a

Browse files
misc cleanups with previous commit
1 parent a311b3b commit 5ca888a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ExternalCoreProjects/Virtu/DiskDsk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ private void WriteDataNibbles(int sectorOffset)
331331
0x90, 0x91, 0x92, 0x93, 0x94, 0x95,
332332

333333
// nibble translate table
334-
0x00, 0x01, 0x98, 0x99, 0x02, 0x03, 0x9C, 0x04, 0x05, 0x06,
334+
0x00, 0x01, 0x98, 0x99, 0x02, 0x03, 0x9C, 0x04, 0x05, 0x06,
335335
0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0x07, 0x08, 0xA8, 0xA9, 0xAA, 0x09, 0x0A, 0x0B, 0x0C, 0x0D,
336336
0xB0, 0xB1, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0xB8, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A,
337337
0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0x1B, 0xCC, 0x1C, 0x1D, 0x1E,

References/Virtu.dll

0 Bytes
Binary file not shown.

src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IMemoryDomains.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ private void SetupMemoryDomains()
1515
addr =>
1616
{
1717
if (addr is < 0 or > 0x10000) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: "address out of range");
18-
return (byte)_machine.Memory.PeekMainRam((int)addr);
18+
return _machine.Memory.PeekMainRam((int)addr);
1919
},
2020
(addr, value) =>
2121
{
@@ -29,7 +29,7 @@ private void SetupMemoryDomains()
2929
addr =>
3030
{
3131
if (addr is < 0 or > 0x10000) throw new ArgumentOutOfRangeException(paramName: nameof(addr), addr, message: "address out of range");
32-
return (byte)_machine.Memory.PeekAuxRam((int)addr);
32+
return _machine.Memory.PeekAuxRam((int)addr);
3333
},
3434
(addr, value) =>
3535
{

0 commit comments

Comments
 (0)