Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DNS16550.cs183 modemControl = (ModemControl)(value & 0x1F); in WriteByte()
268 if((modemControl & ModemControl.Loopback) == 0) in ReadByte()
294 value = (byte)modemControl; in ReadByte()
312 if((modemControl & ModemControl.Loopback) != 0) in ReadByte()
315 value = (byte)(((byte)modemControl & 0x0c) << 4); in ReadByte()
316 value |= (byte)(((byte)modemControl & 0x02) << 3); in ReadByte()
317 value |= (byte)(((byte)modemControl & 0x01) << 5); in ReadByte()
373 modemControl = ModemControl.ForceDataCarrierDetect; in Reset()
433 private ModemControl modemControl; field in Antmicro.Renode.Peripherals.UART.NS16550