-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NMOS HMOS 6502 accuracy #2
Comments
I'm not sure about the Ricoh 2A03/2A07 of the NES |
Thanks, I've made several changes on the emulator since last version, I'll upload them to a new branch soon. I'm checking all instructions, memory access and cycles too. |
regarding the differences between the different 6502 versions, do you plan to add different modes for the emulator ? |
Yes, of course. I'm working on my NES emu, and I want to use this core for other machines too. I'll add support for the undocumented opcodes and for other 6502 models. |
I've uploaded my most recent code to the branch WIP (it uses the "v0.1" branch of Z). I'll release a new version of this core in January 2020. |
ASL, INC and possibly other read/write instructions do two writes on an original 6502.
They first write the original value, then the modified one.
The CMOS 65C02 behave differently.
That can cause issues when working on memory mapped I/O, such as what is done on the C64.
The text was updated successfully, but these errors were encountered: