ISE14.7 KINTEX7,生成软核后用SDK自带的测试代码运行,debug的时候只要是中断模式不管是定时器还是UART都卡在
void Xil_Assert(const char *File, int Line)
{
/* if the callback has been set then invoke it */
if (Xil_AssertCallbackRoutine != 0) {
(*Xil_AssertCallbackRoutine)(File, Line);
}
/* if specified, wait indefinitely such that the assert will show up
* in testing
*/
while (Xil_AssertWait) {
}
}
第一次做软核的东西,兄弟们有遇到这个问题的帮看看 |