Cartridge dumping: Difference between revisions

From ReplayResources
Jump to navigationJump to search
mNo edit summary
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 2: Line 2:


A very well written and illustrated article named '''[http://markus.brenner.de/cartridge/index.html Dumping Cartridges on the Commodore 64]''' by Markus Brenner is nowadays defacto main page for this topic. Check it out!
A very well written and illustrated article named '''[http://markus.brenner.de/cartridge/index.html Dumping Cartridges on the Commodore 64]''' by Markus Brenner is nowadays defacto main page for this topic. Check it out!
=== first try ===
If you can somehow get a "READY." screen, the easiest thing is to just save the entire memory range and send that to us for further inspection. In many cases we will be able to find fragments of code in that dump which will allow us to produce a dumper program, or provide you with other further instructions.
poke43,0:poke44,0:poke45,255:poke46,255:poke55,255:poke56,255:save"mem",8,1
=== Dumping a Commodore 128 Cartridge ROM ===
JC from [http://www.basicbites.ca/ Basic Bites] created a Youtube video on '''[https://www.youtube.com/watch?v=x08JWFDaCqY Dumping a Commodore 128 Cartridge ROM]'''




[[Category:Cartridge_FAQ]]
[[Category:Cartridge_FAQ]]

Latest revision as of 14:53, 18 September 2022

Cartridge dumping is pretty easy once you have the required hardware added or changes made to your C64/C128. A modified Kernal ROM usually is sufficient. Disabling the expansion port and re-enabling it during C64 operation by using an added switch is another common method.

A very well written and illustrated article named Dumping Cartridges on the Commodore 64 by Markus Brenner is nowadays defacto main page for this topic. Check it out!

first try

If you can somehow get a "READY." screen, the easiest thing is to just save the entire memory range and send that to us for further inspection. In many cases we will be able to find fragments of code in that dump which will allow us to produce a dumper program, or provide you with other further instructions.

poke43,0:poke44,0:poke45,255:poke46,255:poke55,255:poke56,255:save"mem",8,1


Dumping a Commodore 128 Cartridge ROM

JC from Basic Bites created a Youtube video on Dumping a Commodore 128 Cartridge ROM