Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[C64] make sure the 1541 drive uses the same 6502 undocumented behavi…
Browse files Browse the repository at this point in the history
…or as the main CPU
SaxxonPike committed Jan 11, 2025
1 parent 696dbc7 commit 3f27f39
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -54,7 +54,9 @@ public Drive1541(int clockNum, int clockDen, Func<int> getCurrentDiskNumber)
DriveRom = new Chip23128();
_cpu = new MOS6502X<CpuLink>(new CpuLink(this))
{
NMI = false
NMI = false,
AneConstantFunc = () => 0xEF,
LxaConstantFunc = () => 0xFE
};

_ram = new int[0x800];

0 comments on commit 3f27f39

Please sign in to comment.