Need help for Kazzo USB rom dumper(about the firmware)

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
Need help for Kazzo USB rom dumper(about the firmware)
by on (#96495)
I try to improve the firmware!
so i add a request (REQUEST_CPU_READ2)to the firmware
and write a new function named cpu_read2

Code:
cpu_read2(...)
{
 cpu_write_6502(...);
 cpu_read_6502(...);//this funtion will faild,can not read the data,why
}


if not call cpu_write_6502, cpu_read_6502 can read data。
like thie:

Code:
cpu_read2(...)
{
 //cpu_write_6502(...);
 cpu_read_6502(...);//it's ok
}

by on (#96500)
I spent awhile trying to learn and modify the firmware. I ended up giving up because I couldn't understand the code well partly due to the lack of documentation/comments. I've got my own firmware that works for NROM and have intent to support other mappers in the future. I'll share it privately if you're interested.

by on (#96525)
infiniteneslives wrote:
I spent awhile trying to learn and modify the firmware. I ended up giving up because I couldn't understand the code well partly due to the lack of documentation/comments. I've got my own firmware that works for NROM and have intent to support other mappers in the future. I'll share it privately if you're interested.


my dumper use the atmega16.

by on (#96546)
Shouldn't be an issue...

My base should work you'd just have to compile it for your part.

by on (#96570)
infiniteneslives wrote:
Shouldn't be an issue...

My base should work you'd just have to compile it for your part.


I can try it!
please send to my email at byemu.peter@gmail.com

by on (#96812)
infiniteneslives wrote:
Shouldn't be an issue...

My base should work you'd just have to compile it for your part.


I found these two:
http://codeandlife.com/2012/01/22/avr-a ... al-part-1/
http://www2.tech.purdue.edu/eet/courses ... ial/atmel/