You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// cpu.memory is a sparse js 'array', let's convert it to a full 64KiB array before downloading
varmemory=newUint8Array(0x10000);
for(keyincpu.memory){
memory[key]=cpu.memory[key];
}
Currently, I am converting the sparse array into a full 64KiB array before creating an ELF with it. instead, we can create a section for each set of consecutive addresses and save on filesize.
The text was updated successfully, but these errors were encountered:
microcorruption-dumper/pkg/mcorrupt.user.js
Lines 23 to 27 in 9bd68f9
Currently, I am converting the sparse array into a full 64KiB array before creating an ELF with it. instead, we can create a section for each set of consecutive addresses and save on filesize.
The text was updated successfully, but these errors were encountered: