summaryrefslogtreecommitdiff
path: root/include/debug.h
diff options
context:
space:
mode:
authorLeo C2014-11-21 02:15:16 +0100
committerLeo C2014-11-21 02:15:16 +0100
commite39cd2a2822a410ba06d61657a467c8307daa35d (patch)
tree3d8207fb2fbb4ea6cebde1b6631da9df6767347f /include/debug.h
parent05437fb4cdb907816a4fc3ffafa2617fcf33266a (diff)
downloadz180-stamp-e39cd2a2822a410ba06d61657a467c8307daa35d.zip
One dump_mem() for all memory types (avr eeprom and ram, z180 ram)
Diffstat (limited to 'include/debug.h')
-rw-r--r--include/debug.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/debug.h b/include/debug.h
index 45a1d50..70039a6 100644
--- a/include/debug.h
+++ b/include/debug.h
@@ -30,10 +30,9 @@
#endif /* 0 */
-void dump_eep(const uint8_t *addr, unsigned int len, char *title);
-void dump_ram(const uint8_t *addr, unsigned int len, char *title);
+void dump_eep(uint32_t addr, unsigned int len, char *title);
+void dump_ram(uint32_t addr, unsigned int len, char *title);
void printfreelist(const char * title);
#endif /* DEBUG_H_ */
-