diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2014-09-08 11:12:54 +0200 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2014-09-08 11:12:54 +0200 |
commit | 847106cdb20a0297dc9a10f212f0e3c8e6f3d58c (patch) | |
tree | a7ed541f10c7469c6f30790140cc848e12fb119c /utils/hwstub/lib/hwstub.h | |
parent | d815c26e8fad1562e7c4d175bc4dec2567f0fe88 (diff) | |
download | rockbox-847106cdb20a0297dc9a10f212f0e3c8e6f3d58c.tar.gz rockbox-847106cdb20a0297dc9a10f212f0e3c8e6f3d58c.zip |
hwstub: add support for jump/call in library
Change-Id: Ia57ca613609a5e89e41ff927d7fc137c6841046a
Diffstat (limited to 'utils/hwstub/lib/hwstub.h')
-rw-r--r-- | utils/hwstub/lib/hwstub.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/hwstub/lib/hwstub.h b/utils/hwstub/lib/hwstub.h index 8fb98fe669..d7d6ceb8ef 100644 --- a/utils/hwstub/lib/hwstub.h +++ b/utils/hwstub/lib/hwstub.h @@ -56,6 +56,7 @@ int hwstub_read(struct hwstub_device_t *dev, uint32_t addr, void *buf, size_t sz int hwstub_write(struct hwstub_device_t *dev, uint32_t addr, void *buf, size_t sz); int hwstub_rw_mem(struct hwstub_device_t *dev, int read, uint32_t addr, void *buf, size_t sz); /* Returns <0 on error */ +int hwstub_exec(struct hwstub_device_t *dev, uint32_t addr, uint16_t flags); int hwstub_call(struct hwstub_device_t *dev, uint32_t addr); int hwstub_jump(struct hwstub_device_t *dev, uint32_t addr); |