You are not logged in.
Pages: 1
In this part of mc.cpp:
case FW_CMD_PAGEWRITE:
if(mc->addr < mc->size)
{
I do believe that this is wrong:
mc->data[mc->addr] = data;
Though I am no expert; I seem to be getting better results when using this instead:
mc->data[mc->addr + 0x3FF00] = data;
Can anyone confirm this?
Offline
Pages: 1