AtomBusMon/firmware/AtomBusMon.h
David Banks 0c0fde6a32 Working Z80 memory access and disassembler in the small GODIL, incremented version to 0.44
Change-Id: I718be7476ec330743c206e737389856fc4b41fc8
2015-06-28 19:42:25 +01:00

23 lines
415 B
C

#ifndef __ATOMBUSMON_DEFINES__
#define __ATOMBUSMON_DEFINES__
#include "status.h"
#include "dis.h"
#ifdef LCD
#include "hd44780.h"
#endif
#ifdef CPUEMBEDDED
unsigned int disMem(unsigned int addr);
void loadData(unsigned int data);
void loadAddr(unsigned int addr);
unsigned int readByte();
unsigned int readByteInc();
void writeByte();
void writeByteInc();
unsigned int disMem(unsigned int addr);
#endif
#endif