git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11219 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
6f3e9953a7
commit
ccbf09f1a2
|
@ -208,7 +208,7 @@ void mtxRemapRom(void) {
|
|||
/* Invalidate I-Cache*/
|
||||
L1C_InvalidateICacheAll();
|
||||
|
||||
/* Ivalidate Region */
|
||||
/* Invalidate Region */
|
||||
cacheInvalidateRegion((void*)0, IRAM_SIZE);
|
||||
}
|
||||
|
||||
|
@ -223,9 +223,9 @@ void mtxRemapRam(void) {
|
|||
/* Invalidate I-Cache*/
|
||||
L1C_InvalidateICacheAll();
|
||||
|
||||
/* Ivalidate Region */
|
||||
/* Clean I-Region */
|
||||
cacheCleanRegion((void*)IRAM_ADDR, IRAM_SIZE);
|
||||
/* Ivalidate Region */
|
||||
/* Invalidate Region */
|
||||
cacheInvalidateRegion((void*)0, IRAM_SIZE);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue