mirror of https://github.com/bsnes-emu/bsnes.git
214 lines
5.0 KiB
C++
214 lines
5.0 KiB
C++
|
#ifdef SMP_CPP
|
||
|
|
||
|
alwaysinline uint8 SMP::ram_read(uint16 addr) {
|
||
|
if(addr >= 0xffc0 && status.iplrom_enabled) return iplrom[addr & 0x3f];
|
||
|
if(status.ram_disabled) return 0x5a; //0xff on mini-SNES
|
||
|
return memory::apuram[addr];
|
||
|
}
|
||
|
|
||
|
alwaysinline void SMP::ram_write(uint16 addr, uint8 data) {
|
||
|
//writes to $ffc0-$ffff always go to apuram, even if the iplrom is enabled
|
||
|
if(status.ram_writable && !status.ram_disabled) memory::apuram[addr] = data;
|
||
|
}
|
||
|
|
||
|
uint8 SMP::port_read(uint8 port) {
|
||
|
return memory::apuram[0xf4 + (port & 3)];
|
||
|
}
|
||
|
|
||
|
void SMP::port_write(uint8 port, uint8 data) {
|
||
|
memory::apuram[0xf4 + (port & 3)] = data;
|
||
|
}
|
||
|
|
||
|
alwaysinline uint8 SMP::op_busread(uint16 addr) {
|
||
|
uint8 r;
|
||
|
if((addr & 0xfff0) == 0x00f0) { //00f0-00ff
|
||
|
switch(addr) {
|
||
|
case 0xf0: { //TEST -- write-only register
|
||
|
r = 0x00;
|
||
|
} break;
|
||
|
|
||
|
case 0xf1: { //CONTROL -- write-only register
|
||
|
r = 0x00;
|
||
|
} break;
|
||
|
|
||
|
case 0xf2: { //DSPADDR
|
||
|
r = status.dsp_addr;
|
||
|
} break;
|
||
|
|
||
|
case 0xf3: { //DSPDATA
|
||
|
//0x80-0xff are read-only mirrors of 0x00-0x7f
|
||
|
r = dsp.read(status.dsp_addr & 0x7f);
|
||
|
} break;
|
||
|
|
||
|
case 0xf4: //CPUIO0
|
||
|
case 0xf5: //CPUIO1
|
||
|
case 0xf6: //CPUIO2
|
||
|
case 0xf7: { //CPUIO3
|
||
|
synchronize_cpu();
|
||
|
r = cpu.port_read(addr & 3);
|
||
|
} break;
|
||
|
|
||
|
case 0xf8: { //RAM0
|
||
|
r = status.smp_f8;
|
||
|
} break;
|
||
|
|
||
|
case 0xf9: { //RAM1
|
||
|
r = status.smp_f9;
|
||
|
} break;
|
||
|
|
||
|
case 0xfa: //T0TARGET
|
||
|
case 0xfb: //T1TARGET
|
||
|
case 0xfc: { //T2TARGET -- write-only registers
|
||
|
r = 0x00;
|
||
|
} break;
|
||
|
|
||
|
case 0xfd: { //T0OUT -- 4-bit counter value
|
||
|
r = t0.stage3_ticks & 15;
|
||
|
t0.stage3_ticks = 0;
|
||
|
} break;
|
||
|
|
||
|
case 0xfe: { //T1OUT -- 4-bit counter value
|
||
|
r = t1.stage3_ticks & 15;
|
||
|
t1.stage3_ticks = 0;
|
||
|
} break;
|
||
|
|
||
|
case 0xff: { //T2OUT -- 4-bit counter value
|
||
|
r = t2.stage3_ticks & 15;
|
||
|
t2.stage3_ticks = 0;
|
||
|
} break;
|
||
|
}
|
||
|
} else {
|
||
|
r = ram_read(addr);
|
||
|
}
|
||
|
|
||
|
return r;
|
||
|
}
|
||
|
|
||
|
alwaysinline void SMP::op_buswrite(uint16 addr, uint8 data) {
|
||
|
if((addr & 0xfff0) == 0x00f0) { //$00f0-00ff
|
||
|
switch(addr) {
|
||
|
case 0xf0: { //TEST
|
||
|
if(regs.p.p) break; //writes only valid when P flag is clear
|
||
|
|
||
|
status.clock_speed = (data >> 6) & 3;
|
||
|
status.timer_speed = (data >> 4) & 3;
|
||
|
status.timers_enabled = data & 0x08;
|
||
|
status.ram_disabled = data & 0x04;
|
||
|
status.ram_writable = data & 0x02;
|
||
|
status.timers_disabled = data & 0x01;
|
||
|
|
||
|
status.timer_step = (1 << status.clock_speed) + (2 << status.timer_speed);
|
||
|
|
||
|
t0.sync_stage1();
|
||
|
t1.sync_stage1();
|
||
|
t2.sync_stage1();
|
||
|
} break;
|
||
|
|
||
|
case 0xf1: { //CONTROL
|
||
|
status.iplrom_enabled = data & 0x80;
|
||
|
|
||
|
if(data & 0x30) {
|
||
|
//one-time clearing of APU port read registers,
|
||
|
//emulated by simulating CPU writes of 0x00
|
||
|
synchronize_cpu();
|
||
|
if(data & 0x20) {
|
||
|
cpu.port_write(2, 0x00);
|
||
|
cpu.port_write(3, 0x00);
|
||
|
}
|
||
|
if(data & 0x10) {
|
||
|
cpu.port_write(0, 0x00);
|
||
|
cpu.port_write(1, 0x00);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//0->1 transistion resets timers
|
||
|
if(t2.enabled == false && (data & 0x04)) {
|
||
|
t2.stage2_ticks = 0;
|
||
|
t2.stage3_ticks = 0;
|
||
|
}
|
||
|
t2.enabled = data & 0x04;
|
||
|
|
||
|
if(t1.enabled == false && (data & 0x02)) {
|
||
|
t1.stage2_ticks = 0;
|
||
|
t1.stage3_ticks = 0;
|
||
|
}
|
||
|
t1.enabled = data & 0x02;
|
||
|
|
||
|
if(t0.enabled == false && (data & 0x01)) {
|
||
|
t0.stage2_ticks = 0;
|
||
|
t0.stage3_ticks = 0;
|
||
|
}
|
||
|
t0.enabled = data & 0x01;
|
||
|
} break;
|
||
|
|
||
|
case 0xf2: { //DSPADDR
|
||
|
status.dsp_addr = data;
|
||
|
} break;
|
||
|
|
||
|
case 0xf3: { //DSPDATA
|
||
|
//0x80-0xff is a read-only mirror of 0x00-0x7f
|
||
|
if(!(status.dsp_addr & 0x80)) {
|
||
|
dsp.write(status.dsp_addr & 0x7f, data);
|
||
|
}
|
||
|
} break;
|
||
|
|
||
|
case 0xf4: //CPUIO0
|
||
|
case 0xf5: //CPUIO1
|
||
|
case 0xf6: //CPUIO2
|
||
|
case 0xf7: { //CPUIO3
|
||
|
synchronize_cpu();
|
||
|
port_write(addr & 3, data);
|
||
|
} break;
|
||
|
|
||
|
case 0xf8: { //RAM0
|
||
|
status.smp_f8 = data;
|
||
|
} break;
|
||
|
|
||
|
case 0xf9: { //RAM1
|
||
|
status.smp_f9 = data;
|
||
|
} break;
|
||
|
|
||
|
case 0xfa: { //T0TARGET
|
||
|
t0.target = data;
|
||
|
} break;
|
||
|
|
||
|
case 0xfb: { //T1TARGET
|
||
|
t1.target = data;
|
||
|
} break;
|
||
|
|
||
|
case 0xfc: { //T2TARGET
|
||
|
t2.target = data;
|
||
|
} break;
|
||
|
|
||
|
case 0xfd: //T0OUT
|
||
|
case 0xfe: //T1OUT
|
||
|
case 0xff: { //T2OUT -- read-only registers
|
||
|
} break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//all writes, even to MMIO registers, appear on bus
|
||
|
ram_write(addr, data);
|
||
|
}
|
||
|
|
||
|
void SMP::op_io() {
|
||
|
add_clocks(24);
|
||
|
cycle_edge();
|
||
|
}
|
||
|
|
||
|
uint8 SMP::op_read(uint16 addr) {
|
||
|
add_clocks(12);
|
||
|
uint8 r = op_busread(addr);
|
||
|
add_clocks(12);
|
||
|
cycle_edge();
|
||
|
return r;
|
||
|
}
|
||
|
|
||
|
void SMP::op_write(uint16 addr, uint8 data) {
|
||
|
add_clocks(24);
|
||
|
op_buswrite(addr, data);
|
||
|
cycle_edge();
|
||
|
}
|
||
|
|
||
|
#endif
|