20 lines
394 B
C++
20 lines
394 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace z80debug
|
|
{
|
|
void show();
|
|
|
|
void stop();
|
|
void cont();
|
|
const bool debugging();
|
|
void setmemmodified(const uint16_t addr);
|
|
|
|
void refresh();
|
|
void sendToConsole(const char* text);
|
|
void DeleteCharConsole();
|
|
void executeConsole();
|
|
|
|
const bool isbreak(const uint16_t address, const uint8_t type=1);
|
|
uint32_t next();
|
|
} |