开关icache代码

    xiaoxiao2025-05-31  19

    汇编代码读写cp15以开关icache mrc p15,0,r0,c1,c0,0; // 读出cp15的c1到r0中 bic r0, r0, #(1<<12) // bit12 置0  关icache orr r0, r0, #(1<<12) // bit12 置1  开icache mcr p15,0,r0,c1,c0,0;
    转载请注明原文地址: https://ju.6miu.com/read-1299466.html
    最新回复(0)