// // Copyright (c) 2010-2018 Antmicro // // This file is licensed under the MIT License. // Full license text is available in 'licenses/MIT.txt'. // namespace Antmicro.Renode.Core.USB { public enum USBProtocol : short { USB_1_0 = 0x0100, USB_1_1 = 0x0110, USB_2_0 = 0x0200 } }