- [FIX] next (F11) no longer keeps breaking on current line - [NEW] b alone sets breakpoint on current line - [NEW] d alone clears breakpoint on current line - [NEW] d all removes all breakpoints - [FIX] IX bit & IY bit instruction visualization is fixed - [FIX] RRD & RLD were swaped
19 lines
348 B
C++
19 lines
348 B
C++
#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, const uint8_t type=1);
|
|
uint32_t next();
|
|
} |