๐ฌ ICE 3: Microblaze Interrupts#
๐ Objectives#
Students should know how to trigger Microblaze interrupts
๐ Synopsis#
In this ICE, you will add a roll flag to the counter and connect it to the MicroBlazeโs interrupt input
๐งฎ Procedure#
๐ป Code Snippets#
void myISR(void) {
isrCount = isrCount + 1;
Xil_Out8(countCtrlReg,count_RESET);
Xil_Out8(countCtrlReg,count_HOLD);
}