You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
7 years ago
|
/***************************************************************************
|
||
|
* ARM Stack Unwinder, Michael.McTernan.2001@cs.bris.ac.uk
|
||
|
* Updated, adapted and several bug fixes on 2018 by Eduardo José Tagle
|
||
|
*
|
||
|
* This program is PUBLIC DOMAIN.
|
||
|
* This means that there is no copyright and anyone is able to take a copy
|
||
|
* for free and use it as they wish, with or without modifications, and in
|
||
|
* any context, commerically or otherwise. The only limitation is that I
|
||
|
* don't guarantee that the software is fit for any purpose or accept any
|
||
|
* liablity for it's use or misuse - this software is without warranty.
|
||
|
***************************************************************************
|
||
7 years ago
|
* File Description: Utility functions to access memory
|
||
7 years ago
|
**************************************************************************/
|
||
|
|
||
7 years ago
|
#ifndef UNWMEMACCESS_H
|
||
|
#define UNWMEMACCESS_H
|
||
7 years ago
|
|
||
|
#include "unwarm.h"
|
||
7 years ago
|
#include <stdint.h>
|
||
7 years ago
|
|
||
7 years ago
|
bool UnwReadW(const uint32_t a, uint32_t *v);
|
||
|
bool UnwReadH(const uint32_t a, uint16_t *v);
|
||
|
bool UnwReadB(const uint32_t a, uint8_t *v);
|
||
7 years ago
|
|
||
|
#endif
|
||
|
|