This commit is contained in:
David Voswinkel 2009-06-25 19:19:09 +02:00
parent fc785d3ec8
commit 6419623018
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ void dump_packet(uint32_t addr, uint32_t len, uint8_t * packet)
} }
} }
void dump_memoryt(uint32_t bottom_addr, uint32_t top_addr) void dump_memory(uint32_t bottom_addr, uint32_t top_addr)
{ {
uint32_t addr; uint32_t addr;
uint8_t byte; uint8_t byte;

View File

@ -6,7 +6,7 @@
#include <stdarg.h> #include <stdarg.h>
void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet); void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet);
void dump_memoryt(uint32_t bottom_addr, uint32_t top_addr); void dump_memory(uint32_t bottom_addr, uint32_t top_addr);
#endif #endif