mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
15 lines
No EOL
306 B
C++
15 lines
No EOL
306 B
C++
#pragma once
|
|
#include "pch.h"
|
|
#include "Debugger/IAssembler.h"
|
|
#include "Debugger/LabelManager.h"
|
|
|
|
class GbaAssembler : public IAssembler
|
|
{
|
|
public:
|
|
GbaAssembler(LabelManager* labelManager) {}
|
|
|
|
uint32_t AssembleCode(string code, uint32_t startAddress, int16_t* assembledCode) override
|
|
{
|
|
return 0;
|
|
}
|
|
}; |