Merge branch 'ZXSpectrum' of https://github.com/TASVideos/BizHawk.git
This commit is contained in:
commit
bce185b016
|
@ -137,6 +137,8 @@ namespace BizHawk.Emulation.Cores.Calculators
|
|||
|
||||
private void WriteHardware(ushort addr, byte value)
|
||||
{
|
||||
addr &= 0xFF;
|
||||
|
||||
switch (addr)
|
||||
{
|
||||
case 0: // PORT_LINK
|
||||
|
@ -232,6 +234,8 @@ namespace BizHawk.Emulation.Cores.Calculators
|
|||
|
||||
private byte ReadHardware(ushort addr)
|
||||
{
|
||||
addr &= 0xFF;
|
||||
|
||||
switch (addr)
|
||||
{
|
||||
case 0: // PORT_LINK
|
||||
|
|
Loading…
Reference in New Issue