aboutsummaryrefslogtreecommitdiff
path: root/py/asmthumb.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-11-30 00:11:25 +1100
committerDamien George <damien.p.george@gmail.com>2016-11-30 00:11:25 +1100
commit63e82dcdfe33e3805958203cdff0ed4d87a8b536 (patch)
tree3c2314aa6506282c2a96d4af9a94a308eb067e7c /py/asmthumb.c
parent029f215eadcc2fcff612a81b40291e75d4cbc706 (diff)
py/asmthumb: Fix build for F7 MCUs after recent code refactoring.
Diffstat (limited to 'py/asmthumb.c')
-rw-r--r--py/asmthumb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmthumb.c b/py/asmthumb.c
index 705c15a18..82a226b62 100644
--- a/py/asmthumb.c
+++ b/py/asmthumb.c
@@ -53,7 +53,7 @@ void asm_thumb_end_pass(asm_thumb_t *as) {
#if defined(MCU_SERIES_F7)
if (as->base.pass == MP_ASM_PASS_EMIT) {
// flush D-cache, so the code emited is stored in memory
- SCB_CleanDCache_by_Addr((uint32_t*)as->code_base, as->code_size);
+ SCB_CleanDCache_by_Addr((uint32_t*)as->base.code_base, as->base.code_size);
// invalidate I-cache
SCB_InvalidateICache();
}