mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-03-12 21:32:35 +00:00
23 lines
427 B
C
23 lines
427 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 readMemByte();
|
|
unsigned int readMemByteInc();
|
|
void writeMemByte();
|
|
void writeMemByteInc();
|
|
unsigned int disMem(unsigned int addr);
|
|
#endif
|
|
|
|
#endif
|