spk_lionking
Junior Member level 1
- Joined
- May 13, 2013
- Messages
- 19
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,423
I think APB interface in my interrupt, It's ok when I use code below
Then I use XMD console with mrd to read data from my register, result is the same with above code. But have some problem with my interrupt sources
Can you have solotion to resolve this warning from DRC ???
- - - Updated - - -
I don't know why interrupt, interrupt_address and interrupt_ack driven to GND. In the bus tab, bus interrupt's microblaze has connected to my bus interrupt's IP.
Code:
void MyINTC_Initialize()
{
Xil_Out8(sysclr, 0x01);
Xil_Out8(ier, 0xff);
Xil_Out8(iscra, 0x55);
Xil_Out8(iscrb, 0x55);
Xil_Out8(ipra, 0x10);
Xil_Out8(iprb, 0x32);
Xil_Out8(iprc, 0x54);
Xil_Out8(iprd, 0x76);
Xil_Out8(ipre, 0x98);
Xil_Out8(iprf, 0xcc);
}
Can you have solotion to resolve this warning from DRC ???
- - - Updated - - -
I don't know why interrupt, interrupt_address and interrupt_ack driven to GND. In the bus tab, bus interrupt's microblaze has connected to my bus interrupt's IP.