KEK/debugger.h
Folkert van Heusden 517db4657a
Some checks are pending
CodeQL / Analyze (push) Waiting to run
load init file
2025-04-15 19:31:36 +02:00

12 lines
475 B
C++

// (C) 2018-2024 by Folkert van Heusden
// Released under MIT license
#include "bus.h"
#include "console.h"
#include "gen.h"
int disassemble(cpu *const c, console *const cnsl, const uint16_t pc, const bool instruction_only);
void debugger(console *const cnsl, bus *const b, std::atomic_uint32_t *const stop_event, const std::optional<std::string> & init);
void run_bic(console *const cnsl, bus *const b, std::atomic_uint32_t *const stop_event, const uint16_t bic_start);