Files
nes/debug.h

10 lines
174 B
C++

#pragma once
#include <stdint.h>
namespace debug
{
void stop();
const bool isbreak(uint16_t address, uint8_t type = 1);
void setmemmodified(uint16_t address);
}