Browse Source

Emu: Convert Emu class to singleton

master
Riyyi 2 years ago
parent
commit
38c053e2d8
  1. 8
      src/emu.h
  2. 0
      src/processing-unit.cpp
  3. 0
      src/processing-unit.h

8
src/emu.h

@ -2,10 +2,14 @@
#include <cstdint> #include <cstdint>
#include <vector> #include <vector>
#include "processing_unit.h"
class Emu { #include "processing-unit.h"
#include "ruc/singleton.h"
class Emu : ruc::Singleton<Emu> {
public: public:
Emu(s) {}
void WriteRAM(int location, int length); void WriteRAM(int location, int length);
void WriteVRAM(int location, int length); void WriteVRAM(int location, int length);
void WriteROM(int location, int length); void WriteROM(int location, int length);

0
src/processingunit.cpp → src/processing-unit.cpp

0
src/processingunit.h → src/processing-unit.h

Loading…
Cancel
Save