#ifndef __PRINT__ #define __PRINT__ #include #include "emulator.h" word readWord(byte *memory, uint32_t address); dword readDoubleWord(byte *memory, uint32_t address); void printState(Machine *state, FILE *stream); void printRegisters(Machine *state, FILE *stream); void printMemory(Machine *state, FILE *stream); #endif