2016-02-16 09:32:49 +00:00
|
|
|
auto SuperFX::mmio_read(uint24 addr, uint8) -> uint8 {
|
Update to v095r05 release.
byuu says:
Changelog:
- GBA: lots of emulation improvements
- PPU PRAM is 16-bits wide
- DMA masks &~1/Half, &~3/Word
- VRAM OBJ 8-bit writes are ignored
- OAM 8-bit writes are ignored
- BGnCNT unused bits are writable*
- BG(0,1)CNT can't set the d13
- BLDALPHA is readable (fixes Donkey Kong Country, etc)
- SNES: lots of code cleanups
- sfc/chip => sfc/coprocessor
- UI: save most recent controller selection
GBA test scores: 1552/1552, 37/38, 1020/1260
(* forgot to add the value to the read function, so endrift's I/O tests
for them will fail. Fixed locally.)
Note: SNES is the only system with multiple controller/expansion port
options, and as such is the only one with a "None" option. Because it's
shared by the controller and expansion port, it ends up sorted first in
the list. This means that on your first run, you'll need to go to Super
Famicom->Controller Port 1 and select "Gamepad", otherwise input won't
work.
Also note that changing the expansion port device requires loading a new
cart. Unlike controllers, you aren't meant to hotplug expansion port
devices.
2015-11-12 10:15:03 +00:00
|
|
|
cpu.synchronizeCoprocessors();
|
2010-08-09 13:28:56 +00:00
|
|
|
addr &= 0xffff;
|
|
|
|
|
|
|
|
if(addr >= 0x3100 && addr <= 0x32ff) {
|
|
|
|
return cache_mmio_read(addr - 0x3100);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(addr >= 0x3000 && addr <= 0x301f) {
|
|
|
|
return regs.r[(addr >> 1) & 15] >> ((addr & 1) << 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(addr) {
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x3030: {
|
|
|
|
return regs.sfr >> 0;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x3031: {
|
|
|
|
uint8 r = regs.sfr >> 8;
|
|
|
|
regs.sfr.irq = 0;
|
Update to v098r11 release.
byuu says:
Changelog:
- fixed nall/path.hpp compilation issue
- fixed ruby/audio/xaudio header declaration compilation issue (again)
- cleaned up xaudio2.hpp file to match my coding syntax (12.5% of the
file was whitespace overkill)
- added null terminator entry to nall/windows/utf8.hpp argc[] array
- nall/windows/guid.hpp uses the Windows API for generating the GUID
- this should stop all the bug reports where two nall users were
generating GUIDs at the exact same second
- fixed hiro/cocoa compilation issue with uint# types
- fixed major higan/sfc Super Game Boy audio latency issue
- fixed higan/sfc CPU core bug with pei, [dp], [dp]+y instructions
- major cleanups to higan/processor/r65816 core
- merged emulation/native-mode opcodes
- use camel-case naming on memory.hpp functions
- simplify address masking code for memory.hpp functions
- simplify a few opcodes themselves (avoid redundant copies, etc)
- rename regs.* to r.* to match modern convention of other CPU cores
- removed device.order<> concept from Emulator::Interface
- cores will now do the translation to make the job of the UI easier
- fixed plurality naming of arrays in Emulator::Interface
- example: emulator.ports[p].devices[d].inputs[i]
- example: vector<Medium> media
- probably more surprises
Major show-stoppers to the next official release:
- we need to work on GB core improvements: LY=153/0 case, multiple STAT
IRQs case, GBC audio output regs, etc.
- we need to re-add software cursors for light guns (Super Scope,
Justifier)
- after the above, we need to fix the turbo button for the Super Scope
I really have no idea how I want to implement the light guns. Ideally,
we'd want it in higan/video, so we can support the NES Zapper with the
same code. But this isn't going to be easy, because only the SNES knows
when its output is interlaced, and its resolutions can vary as
{256,512}x{224,240,448,480} which requires pixel doubling that was
hard-coded to the SNES-specific behavior, but isn't appropriate to be
exposed in higan/video.
2016-05-25 11:13:02 +00:00
|
|
|
cpu.r.irq = 0;
|
2013-05-05 09:21:30 +00:00
|
|
|
return r;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x3034: {
|
|
|
|
return regs.pbr;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x3036: {
|
|
|
|
return regs.rombr;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x303b: {
|
|
|
|
return regs.vcr;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x303c: {
|
|
|
|
return regs.rambr;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x303e: {
|
|
|
|
return regs.cbr >> 0;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x303f: {
|
|
|
|
return regs.cbr >> 8;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0x00;
|
|
|
|
}
|
|
|
|
|
2016-02-16 09:32:49 +00:00
|
|
|
auto SuperFX::mmio_write(uint24 addr, uint8 data) -> void {
|
Update to v095r05 release.
byuu says:
Changelog:
- GBA: lots of emulation improvements
- PPU PRAM is 16-bits wide
- DMA masks &~1/Half, &~3/Word
- VRAM OBJ 8-bit writes are ignored
- OAM 8-bit writes are ignored
- BGnCNT unused bits are writable*
- BG(0,1)CNT can't set the d13
- BLDALPHA is readable (fixes Donkey Kong Country, etc)
- SNES: lots of code cleanups
- sfc/chip => sfc/coprocessor
- UI: save most recent controller selection
GBA test scores: 1552/1552, 37/38, 1020/1260
(* forgot to add the value to the read function, so endrift's I/O tests
for them will fail. Fixed locally.)
Note: SNES is the only system with multiple controller/expansion port
options, and as such is the only one with a "None" option. Because it's
shared by the controller and expansion port, it ends up sorted first in
the list. This means that on your first run, you'll need to go to Super
Famicom->Controller Port 1 and select "Gamepad", otherwise input won't
work.
Also note that changing the expansion port device requires loading a new
cart. Unlike controllers, you aren't meant to hotplug expansion port
devices.
2015-11-12 10:15:03 +00:00
|
|
|
cpu.synchronizeCoprocessors();
|
2010-08-09 13:28:56 +00:00
|
|
|
addr &= 0xffff;
|
|
|
|
|
|
|
|
if(addr >= 0x3100 && addr <= 0x32ff) {
|
|
|
|
return cache_mmio_write(addr - 0x3100, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(addr >= 0x3000 && addr <= 0x301f) {
|
2015-12-14 09:41:06 +00:00
|
|
|
uint n = (addr >> 1) & 15;
|
2010-08-09 13:28:56 +00:00
|
|
|
if((addr & 1) == 0) {
|
|
|
|
regs.r[n] = (regs.r[n] & 0xff00) | data;
|
|
|
|
} else {
|
|
|
|
regs.r[n] = (data << 8) | (regs.r[n] & 0xff);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(addr == 0x301f) regs.sfr.g = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(addr) {
|
2013-05-05 09:21:30 +00:00
|
|
|
case 0x3030: {
|
|
|
|
bool g = regs.sfr.g;
|
|
|
|
regs.sfr = (regs.sfr & 0xff00) | (data << 0);
|
|
|
|
if(g == 1 && regs.sfr.g == 0) {
|
|
|
|
regs.cbr = 0x0000;
|
2010-08-09 13:28:56 +00:00
|
|
|
cache_flush();
|
2013-05-05 09:21:30 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x3031: {
|
|
|
|
regs.sfr = (data << 8) | (regs.sfr & 0x00ff);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x3033: {
|
2015-06-28 08:44:56 +00:00
|
|
|
regs.bramr = data & 0x01;
|
2013-05-05 09:21:30 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x3034: {
|
|
|
|
regs.pbr = data & 0x7f;
|
|
|
|
cache_flush();
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x3037: {
|
|
|
|
regs.cfgr = data;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x3038: {
|
|
|
|
regs.scbr = data;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x3039: {
|
2015-06-28 08:44:56 +00:00
|
|
|
regs.clsr = data & 0x01;
|
2013-05-05 09:21:30 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case 0x303a: {
|
|
|
|
regs.scmr = data;
|
|
|
|
} break;
|
2010-08-09 13:28:56 +00:00
|
|
|
}
|
|
|
|
}
|