仿真錯誤*** error 65是什麽意思?

2019-03-24 16:23发布

仿真的時候,出現*** error 65: access violation at 0x400FE108 : no 'read' permission錯誤是怎么回事?
編譯沒有錯誤!
謝謝 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
14条回答
academic
1楼-- · 2019-03-25 01:38
< 使用哪个编译工具?
tieyi0404
2楼-- · 2019-03-25 06:56
 精彩回答 2  元偷偷看……
academic
3楼-- · 2019-03-25 08:06
#define SYSCTL_RCGC2            0x400FE108  // Run Mode Clock Gating Control
tieyi0404
4楼-- · 2019-03-25 08:35
#include "SystemInit.h"

#define LED_PERIPH  SYSCTL_PERIPH_GPIOG
#define LED_PROT    GPIO_PORTG_BASE
#define LED_PINS    GPIO_PIN_2|GPIO_PIN_5

int main(void)
{
    unsigned char vcVal;
    jtagWait();
    clockInit();
   
    SysCtlPeripheralEnable(LED_PERIPH);
    GPIOPinTypeOut(LED_PROT,LED_PINS);
   
    vcVal = (0 << 2)|(1 << 5);
    for(;;)
    {
        GPIOPinWrite(LED_PROT,LED_PINS,vcVal);
        vcVal ^= (0 << 2)|(1 << 5);
        SysCtlDelay(150*(TheSysClock/3000));//┑??150ms
    }
}
tieyi0404
5楼-- · 2019-03-25 10:25
 精彩回答 2  元偷偷看……
academic
6楼-- · 2019-03-25 16:11
没遇到过这种情况,不知道是什么原因,帮顶一下。

一周热门 更多>

相关问题

    相关文章