ARMv8/src/print.h

13 lines
333 B
C

#ifndef __PRINT__
#define __PRINT__
#include <stdio.h>
#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