mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-01-11 09:29:42 +00:00
b55ee9789e
Change-Id: Ib644d8aada47f04594fc6b9c6f6734e02066593b
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
|