Panda3DS/include/emulator.hpp
2022-09-15 18:43:20 +03:00

34 lines
No EOL
755 B
C++

#pragma once
#include <filesystem>
#include "cpu.hpp"
#include "helpers.hpp"
#include "opengl.hpp"
#include "SFML/Window.hpp"
#include "SFML/Graphics.hpp"
class Emulator {
CPU cpu;
Memory memory;
Kernel kernel;
sf::RenderWindow window;
static constexpr u32 width = 400;
static constexpr u32 height = 240 * 2; // * 2 because 2 screens
public:
Emulator() : window(sf::VideoMode(width, height), "Alber", sf::Style::Default, sf::ContextSettings(0, 0, 0, 4, 3)),
kernel(cpu.regs(), memory), cpu(memory, kernel) {
reset();
window.setActive(true);
}
void step();
void render();
void reset();
void run();
void runFrame();
bool loadELF(std::filesystem::path& path);
};