breakpoints, mem, run, console...

This commit is contained in:
2024-04-12 14:30:53 +02:00
parent b06d880614
commit eb4f2be4a4
6 changed files with 253 additions and 53 deletions

View File

@@ -1,7 +1,18 @@
#pragma once
#include <stdint.h>
namespace z80debug
{
void show();
void stop();
void cont();
const bool debugging();
void refresh();
void sendToConsole(const char* text);
void DeleteCharConsole();
void executeConsole();
const bool isbreak(const uint16_t address);
}