Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DEHCIHostController.cs1105 staticEndpointState1 = systemBus.ReadDoubleWord(Address + 0x04); in Fetch()
1113 DataToggleControl = ((staticEndpointState1 & 0x4000) != 0); in Fetch()
1114 EndpointSpeed = (EndpointSpeed)((staticEndpointState1 & 0x3000) >> 12); in Fetch()
1115 EndpointNumber = (byte)((staticEndpointState1 & 0xf00) >> 8); in Fetch()
1116 DeviceAddress = (byte)(staticEndpointState1 & 0x7f); in Fetch()
1204 private uint staticEndpointState1; field in Antmicro.Renode.Peripherals.USBDeprecated.EHCIHostController.QueueHead