bootloader svc 模式

 

bootloader 和操作系统都是工作在svc模式下

/*
* set the cpu to SVC32 mode
*/
mrs r0,cpsr
bic r0,r0,#0x1f
orr r0,r0,#0xd3
msr cpsr,r0

相关文章:

  • 2021-11-09
  • 2022-12-23
  • 2022-01-17
  • 2021-11-28
  • 2022-01-03
  • 2022-03-02
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
  • 2021-11-24
  • 2021-12-03
  • 2022-02-06
相关资源
相似解决方案