Skip to content
This repository has been archived by the owner on Jul 6, 2018. It is now read-only.

Commit

Permalink
HOTFIX: Writeprotection for 0x00 removed
Browse files Browse the repository at this point in the history
Was removed due to a bug with indirect addressing
  • Loading branch information
Rico committed May 22, 2017
1 parent 5a23a53 commit a4dae3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Processor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ internal byte GetFile(ushort address)
internal void SetFile(ushort address, byte value)
{
// Nicht-implementierte memory locations dürfen nicht beschrieben werden!
if (address == 0x00 || address == 0x80) return;
//if (address == 0x00 || address == 0x80) return;
if (address == 0x07 || address == 0x87) return;
if (address >= 0x50 && address <= 0x7F) return;
if (address >= 0xD0 && address <= 0xFF) return;
Expand Down

0 comments on commit a4dae3e

Please sign in to comment.