39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* ________ .__ __ ________ ____ ________
|
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
|
* \__> \/ \/ \/ \/ \/
|
|
* ___.
|
|
* __ __ _____\_ |__
|
|
* | | \/ ___/| __ \
|
|
* | | /\___ \ | \_\ \
|
|
* |____//____ >|___ /
|
|
* \/ \/
|
|
*
|
|
* www.optixx.org
|
|
*
|
|
*
|
|
* Version: 1.0
|
|
* Created: 07/21/2009 03:32:16 PM
|
|
* Author: david@optixx.org
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef __DUMP_H__
|
|
#define __DUMP_H__
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
|
|
void dump_memory(uint32_t bottom_addr, uint32_t top_addr);
|
|
|
|
void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet);
|
|
|
|
#endif
|
|
|