1 //
2 // Copyright (c) 2010-2018 Antmicro
3 //
4 //  This file is licensed under the MIT License.
5 //  Full license text is available in 'licenses/MIT.txt'.
6 //
7 namespace Antmicro.Renode.Core.USB
8 {
9     public enum USBProtocol : short
10     {
11         USB_1_0 = 0x0100,
12         USB_1_1 = 0x0110,
13         USB_2_0 = 0x0200
14     }
15 }