-
Notifications
You must be signed in to change notification settings - Fork 5
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
SIMCRT: ActionReplay does not work properly #69
Comments
Just some notes for myself: So far, I'm concentrating on the fastloader, since that seems the easiest to debug. ObservationsThis CRT file (and the fastloader) works fine in VICE.
AnalysisMy guess at the moment is that the problem is in step 3. The CRT file contains just 4 banks, all with load address of $8000 and length $2000, and numbered from 0 to 3. The file One fix would be to load chip contents into both LORAM and HIRAM. This will work as long as we are not overwriting anything in HIRAM. |
To be specific, the fix I'm contemplating is the following:
|
@MJoergen Is this a dangerous fix and could it affect other cartridges? If so, I propose to make this a "V6 or later" thing. Too many people already tested too many CRTs as you might have seen in the #c64 core channel on Discord. They won't retest everything for the release.... ...which is why I start entering "Paranoid Mode"(tm) :-) |
I'm having the same reservations. I would like to try the fix in a local debug build, in order to test the hypothesis. If this fix works, thus confirming the above analysis, then indeed we should postpone it. The reason is that If the proposed fix does not solve the current issue, then more debugging is needed. |
Ok, the one-line fix does not fully solve the issue. With the change, the fast-loader does start up, but no READY prompt appears, and the core resets after a few seconds. I conclude that the initial hypothesis (failure in step 3) is correct, but not sufficient to solve this issue. |
Problem has been reproduced in simulation! With the above-mentioned fix (implemented in commit ad8ab5d) the CPU encounters an unintended BRK instruction at $DF11:
The same sequence in VICE shows a different result:
The behavior of VICE is correct, and the address $DF11 should be a mirror of address $9F11 in the cartridge. |
Apparently, in VICE, values written to $9F11 is also written to $DF11, at least when bit 5 of $DE00 is set. This seems to be confirmed by the schematic at https://www.zimmers.net/anonftp/pub/cbm/schematics/cartridges/c64/freezer/MK.gif : |
More debugging shows that the same happens during read: When bit 5 of $DE00 is set, reads from CART ROM LO (i.e. $8000 - $9FFF) actually read from the cartridge RAM, not the cartridge ROM. |
The main difference is that the cartridge contains an 8 kB RAM
Starting the FREEZER menu crashes the core
https://github.com/MJoergen/C64MEGA65/assets/6825267/6c5ae563-e6aa-4bee-9ed3-e2a55684cb95
Installing the fastloader does not work
https://github.com/MJoergen/C64MEGA65/assets/6825267/bb47a6a1-ce5b-4cc3-85af-5c9c0af52bf4
The text was updated successfully, but these errors were encountered: