dump.h 239 B

123456789101112
  1. #ifndef __DUMP_H__
  2. #define __DUMP_H__
  3. #include <stdlib.h>
  4. #include <stdint.h>
  5. #include <stdarg.h>
  6. void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet);
  7. void dump_memoryt(uint32_t bottom_addr, uint32_t top_addr);
  8. #endif