mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-03-12 21:32:35 +00:00
12 lines
240 B
C
12 lines
240 B
C
#ifndef __DIS_DEFINES__
|
|
#define __DIS_DEFINES__
|
|
|
|
// The processor dependent config/status port
|
|
#define PDC_PORT PORTA
|
|
#define PDC_DDR DDRA
|
|
#define PDC_DIN PINA
|
|
|
|
unsigned int disassemble(unsigned int addr);
|
|
|
|
#endif
|