emulator/src/debug/debug.h

10 lines
189 B
C

#ifndef DEBUG_H
#define DEBUG_H
#include "../toy.h"
void fprintBits(size_t const size, void const * const ptr, FILE *file_pointer);
void makeHexDump(bool base_2, uint16_t ram[]);
#endif