mirror of
https://github.com/ksherlock/mpw.git
synced 2025-01-23 12:32:12 +00:00
51 lines
835 B
C++
51 lines
835 B
C++
#ifndef __debugger_h__
|
|
#define __debugger_h__
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
// Debugger is a function in MacTypes.h
|
|
namespace Debug {
|
|
|
|
|
|
enum {
|
|
cmdNull,
|
|
cmdContinue,
|
|
cmdStep,
|
|
cmdRun,
|
|
};
|
|
|
|
struct Command {
|
|
bool valid;
|
|
int action;
|
|
uint32_t argc;
|
|
uint32_t argv[10];
|
|
};
|
|
|
|
|
|
bool ParseLine(const char *iter, Command *command);
|
|
|
|
void Shell();
|
|
void Help();
|
|
|
|
uint32_t ReadLong(uint32_t);
|
|
uint16_t ReadWord(uint32_t);
|
|
uint8_t ReadByte(uint32_t);
|
|
|
|
void Print(uint32_t value);
|
|
void PrintRegisters();
|
|
|
|
void Dump(uint32_t address, int count = 256);
|
|
void List(uint32_t address, int count = 20);
|
|
void List(uint32_t pc, uint32_t endpc);
|
|
|
|
void SetARegister(unsigned reg, uint32_t value);
|
|
void SetDRegister(unsigned reg, uint32_t value);
|
|
void SetXRegister(unsigned reg, uint32_t value);
|
|
|
|
void ToolBreak(int32_t tool);
|
|
void Break(int32_t address);
|
|
|
|
}
|
|
|
|
#endif |