all repos — mgba @ 562a33d98b8faf2c19b8e3a22118e50604e9c385

mGBA Game Boy Advance Emulator

src/debugger/memory-debugger.h (view raw)

 1#ifndef MEMORY_DEBUGGER_H
 2#define MEMORY_DEBUGGER_H
 3
 4#include "common.h"
 5
 6#include "arm.h"
 7
 8struct ARMDebugger;
 9
10void ARMDebuggerInstallMemoryShim(struct ARMDebugger* debugger);
11void ARMDebuggerRemoveMemoryShim(struct ARMDebugger* debugger);
12
13#endif