diff options
author | mlu <mlu@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-09-15 16:20:39 +0000 |
---|---|---|
committer | mlu <mlu@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-09-15 16:20:39 +0000 |
commit | 6d2473b65b00c1bc17e74381b5ecefdc0fc26bd4 (patch) | |
tree | c3b1789de0e822a2f7745f733b0318a05e1ce3eb | |
parent | f0ddb40ced817d5a848aaf964d27212169c4e5eb (diff) | |
download | openocd_libswd-6d2473b65b00c1bc17e74381b5ecefdc0fc26bd4.tar.gz openocd_libswd-6d2473b65b00c1bc17e74381b5ecefdc0fc26bd4.tar.bz2 openocd_libswd-6d2473b65b00c1bc17e74381b5ecefdc0fc26bd4.tar.xz openocd_libswd-6d2473b65b00c1bc17e74381b5ecefdc0fc26bd4.zip |
Define debug_base, debug_ap, memory_ap in armv7a_common_t
git-svn-id: svn://svn.berlios.de/openocd/trunk@2714 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/target/armv7a.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h index b23e7065..5814c13d 100644 --- a/src/target/armv7a.h +++ b/src/target/armv7a.h @@ -98,6 +98,13 @@ typedef struct armv7a_common_s /* arm adp debug port */ swjdp_common_t swjdp_info; + + /* Core Debug Unit */ + uint32_t debug_base; + uint8_t debug_ap; + uint8_t memory_ap; + + /* Cache and Memory Management Unit */ armv4_5_mmu_common_t armv4_5_mmu; armv4_5_common_t armv4_5_common; void *arch_info; |