o switch to v46

This commit is contained in:
David Voswinkel
2009-05-12 22:17:42 +02:00
parent 7a878eab39
commit 8e877d38d4
217 changed files with 1440 additions and 31284 deletions

View File

@@ -1,17 +1,27 @@
#include <../base.hpp>
#define SSMP_CPP
#define SSMP_CPP
namespace SNES {
#include "core/core.cpp"
#include "memory/memory.cpp"
#include "timing/timing.cpp"
#include "timing/timing.cpp"
void sSMP::enter() {
while(true) {
tracer.trace_smpop(); //traces SMP opcode (only if tracer is enabled)
(this->*opcode_table[op_readpc()])();
//forcefully sync S-CPU and S-SMP, in case chips are not communicating
static unsigned counter = 0;
if(++counter >= 128) {
counter = 0;
scheduler.sync_smpcpu();
}
}
}
void sSMP::power() {
for(unsigned i = 0; i < memory::apuram.size(); i++) {
//SNES hardware APURAM contains pseudo-random data upon power up (exact formula is unknown.)
//memory::apuram.write(i, (i & 32) ? 0xff : 0x00);
memory::apuram.write(i, 0x00);
}
//targets not initialized/changed upon reset
t0.target = 0;
t1.target = 0;
@@ -28,6 +38,10 @@ void sSMP::reset() {
regs.sp = 0xef;
regs.p = 0x02;
for(unsigned i = 0; i < memory::apuram.size(); i++) {
memory::apuram.write(i, 0x00);
}
status.clock_counter = 0;
status.dsp_counter = 0;
@@ -63,8 +77,11 @@ void sSMP::reset() {
t2.stage3_ticks = 0;
}
sSMP::sSMP() {
sSMP::sSMP() {
initialize_opcode_table();
}
sSMP::~sSMP() {
}
};