bsnes/higan/gb/cartridge
Tim Allen 32a95a9761 Update to v097r12 release.
byuu says:

Nothing WS-related this time.

First, I fixed expansion port device mapping. On first load, it was
mapping the expansion port device too late, so it ended up not taking
effect. I had to spin out the logic for that into
Program::connectDevices(). This was proving to be quite annoying while
testing eBoot (SNES-Hook simulation.)

Second, I fixed the audio->set(Frequency, Latency) functions to take
(uint) parameters from the configuration file, so the weird behavior
around changing settings in the audio panel should hopefully be gone
now.

Third, I rewrote the interface->load,unload functions to call into the
(Emulator)::System::load,unload functions. And I have those call out to
Cartridge::load,unload. Before, this was inverted, and Cartridge::load()
was invoking System::load(), which I felt was kind of backward.

The Super Game Boy really didn't like this change, however. And it took
me a few hours to power through it. Before, I had the Game Boy core
dummying out all the interface->(load,save)Request calls, and having the
SNES core make them for it. This is because the folder paths and IDs
will be different between the two cores.

I've redesigned things so that ICD2's Emulator::Interface overloads
loadRequest and saveRequest, and translates the requests into new
requests for the SuperFamicom core. This allows the Game Boy code to do
its own loading for everything without a bunch of Super Game Boy special
casing, and without any awkwardness around powering on with no cartridge
inserted.

This also lets the SNES side of things simply call into higher-level
GameBoy::interface->load,save(id, stream) functions instead of stabbing
at the raw underlying state inside of various Game Boy core emulation
classes. So things are a lot better abstracted now.
2016-02-08 14:17:59 +11:00
..
huc1 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
huc3 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
mbc0 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
mbc1 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
mbc2 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
mbc3 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
mbc5 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
mmm01 Update to v096r03 release. 2016-01-08 20:23:46 +11:00
cartridge.cpp Update to v097r12 release. 2016-02-08 14:17:59 +11:00
cartridge.hpp Update to v097r12 release. 2016-02-08 14:17:59 +11:00
serialization.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00