You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
687 B
48 lines
687 B
#ifndef __SNES_HPP
|
|
#define __SNES_HPP
|
|
|
|
#include "../../../snes9x.h"
|
|
#include "../../resampler.h"
|
|
#include "../../../msu1.h"
|
|
|
|
#define debugvirtual
|
|
|
|
namespace SNES
|
|
{
|
|
|
|
struct Processor
|
|
{
|
|
unsigned frequency;
|
|
int32 clock;
|
|
};
|
|
|
|
#include "../smp/smp.hpp"
|
|
#include "../dsp/sdsp.hpp"
|
|
|
|
class CPU
|
|
{
|
|
public:
|
|
uint8 registers[4];
|
|
|
|
inline void reset ()
|
|
{
|
|
registers[0] = registers[1] = registers[2] = registers[3] = 0;
|
|
}
|
|
|
|
alwaysinline void port_write (uint8 port, uint8 data)
|
|
{
|
|
registers[port & 3] = data;
|
|
}
|
|
|
|
alwaysinline uint8 port_read (uint8 port)
|
|
{
|
|
return registers[port & 3];
|
|
}
|
|
};
|
|
|
|
extern CPU cpu;
|
|
|
|
} // namespace SNES
|
|
|
|
#endif
|