py/asmthumb: Detect presence of I-cache using CMSIS macro.
Fixes issue #4113.
This commit is contained in:
parent
30a45360e7
commit
7e3dd9f8a3
|
@ -51,7 +51,7 @@ void asm_thumb_end_pass(asm_thumb_t *as) {
|
|||
(void)as;
|
||||
// could check labels are resolved...
|
||||
|
||||
#if defined(MCU_SERIES_F7)
|
||||
#if __ICACHE_PRESENT == 1
|
||||
if (as->base.pass == MP_ASM_PASS_EMIT) {
|
||||
// flush D-cache, so the code emitted is stored in memory
|
||||
MP_HAL_CLEAN_DCACHE(as->base.code_base, as->base.code_size);
|
||||
|
|
Loading…
Reference in New Issue