我目前正在阅读带有 ARM Cortex-A9 用户指南的 DE0-Nano-SoC 计算机系统,我在其中找到了 ac 代码,但我不明白“*(MPcore_private_timer_ptr + 3)”中的“+ 3”是什么意思?
while (1)
{
*HPS_GPIO1_ptr = HPS_LEDG; // turn on/off LEDG
while (*(MPcore_private_timer_ptr + 3) == 0)
; // wait for timer to expire
*(MPcore_private_timer_ptr + 3) = 1; // reset timer flag bit
HPS_LEDG ^= bit_24_pattern; // toggle bit that controls LEDG
}