Home
last modified time | relevance | path

Searched refs:timeCompareInterrupt (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DEFR32xG2_USART_0.cs188 .WithFlag(14, out timeCompareInterrupt[0], name: "TCMP0IF") in BuildRegistersCollection()
189 .WithFlag(15, out timeCompareInterrupt[1], name: "TCMP1IF") in BuildRegistersCollection()
190 .WithFlag(16, out timeCompareInterrupt[2], name: "TCMP2IF") in BuildRegistersCollection()
711 timeCompareInterrupt[startIndex].Value = true; in CompareTimerHandleLimitReached()
742 … || (timeCompareInterruptEnable[0].Value && timeCompareInterrupt[0].Value) in UpdateInterrupts()
743 … || (timeCompareInterruptEnable[1].Value && timeCompareInterrupt[1].Value) in UpdateInterrupts()
744 … || (timeCompareInterruptEnable[2].Value && timeCompareInterrupt[2].Value)); in UpdateInterrupts()
792 …private IFlagRegisterField[] timeCompareInterrupt = new IFlagRegisterField[NumberOfTimeCompareTime… field in Antmicro.Renode.Peripherals.UART.EFR32xG2_USART_0