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
so we'd have to replicate that to read these files. one snag is they're calling SNES::cartridge.has_sa1(), which means we may need the same detection routines that BSNES has to know what data is next in the file. that's... kinda unfortunate, maybe we should add some kind of tagging into the BSNES file format so we don't have to detect the file format/etc.
The text was updated successfully, but these errors were encountered:
So our usage map import works great for main CPU
In the BSNES "-usage.bin" files output though, it contains usage info for all of the various kinds of CPUs.
Right now we're just reading the first part of that file (main CPU) and ignoring the rest (SA1, SFX, SPC, etc)
looks like this:
We can totally parse that stuff though :)
BSNES code is doing stuff like this:
so we'd have to replicate that to read these files. one snag is they're calling
SNES::cartridge.has_sa1()
, which means we may need the same detection routines that BSNES has to know what data is next in the file. that's... kinda unfortunate, maybe we should add some kind of tagging into the BSNES file format so we don't have to detect the file format/etc.The text was updated successfully, but these errors were encountered: