initial commit

This commit is contained in:
Lauchmelder 2022-02-28 16:04:25 +01:00
commit ff8389a76b
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
46 changed files with 9118 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#pragma once
#include "DebugWindow.hpp"
class CPU;
class Disassembler :
public DebugWindow
{
public:
Disassembler(CPU* cpu);
virtual void OnRender() override;
private:
void Disassemble(std::string& target, uint16_t& pc);
private:
CPU* cpu;
};