Initialer Commit

This commit is contained in:
lux
2017-08-02 20:10:36 +02:00
commit 168a8b9bcf
7 changed files with 179 additions and 0 deletions

10
src/debug/debug.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef DEBUG_H
#define DEBUG_H
#include <stdbool.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