Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DUSBDescriptor.cs83 arr[0x2] = USB.LoByte(); in ToArray()
89 arr[0x8] = VendorId.LoByte(); in ToArray()
91 arr[0xA] = ProductId.LoByte(); in ToArray()
93 arr[0xC] = Device.LoByte(); in ToArray()
127 arr[0x2] = USB.LoByte(); in ToArray()
194 arr[0x2] = TotalLength.LoByte(); in ToArray()
309 arr[0x4] = MaxPacketSize.LoByte(); in ToArray()
377 arr[i] = id.LoByte(); in ToArray()
DUSBCommunicationClass.cs189 arr[0x3] = bcdCDC.LoByte(); in ToArray()
DUsbHub.cs650 arr[0x3] = HubCharacteristics.LoByte(); in ToArray()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DSMC91X.cs229 ExecuteMMUCommand((byte)(value.LoByte() >> 5)); in WriteBank2()
232 packetNumber = value.LoByte(); //only lower byte writable in WriteBank2()
239 SetData(offset, value.LoByte()); in WriteBank2()
243 interruptStatus = (byte)(interruptStatus & ~(value.LoByte() & WritableInterrupts)); in WriteBank2()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/
DFT5336.cs151 queue.Enqueue(touchedPoints[pointNumber].X.LoByte()); in PrepareTouchData()
157 queue.Enqueue(touchedPoints[pointNumber].Y.LoByte()); in PrepareTouchData()
DFT5x06.cs185 data [i * 4 + 6] = points [i].X.LoByte (); in PrepareTouchData()
187 data [i * 4 + 8] = points [i].Y.LoByte (); in PrepareTouchData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCard.cs448 spiContext.DataBuffer[blockSize + 2] = crc.LoByte(); in HandleRead()
566 .Append(crc.LoByte()); in GenerateRegisterResponse()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs595 public static byte LoByte(this UInt16 value) in LoByte() method in Antmicro.Renode.Utilities.Misc