๐Ÿ”ฌ 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);
}