| ... | ... | @@ -984,6 +984,10 @@ pub const DebugInfoDefinition = struct { |
| 984 | 984 | |
| 985 | 985 | pub const MachineType = enum(u16) { |
| 986 | 986 | Unknown = 0x0, |
| 987 | /// Alpha AXP, 32-bit address space |
| 988 | ALPHA = 0x184, |
| 989 | /// Alpha 64, 64-bit address space |
| 990 | ALPHA64 = 0x284, |
| 987 | 991 | /// Matsushita AM33 |
| 988 | 992 | AM33 = 0x1d3, |
| 989 | 993 | /// x64 |
| ... | ... | @@ -994,8 +998,16 @@ pub const MachineType = enum(u16) { |
| 994 | 998 | ARM64 = 0xaa64, |
| 995 | 999 | /// ARM64EC |
| 996 | 1000 | ARM64EC = 0xa641, |
| 1001 | /// ARM64X |
| 1002 | ARM64X = 0xa64e, |
| 997 | 1003 | /// ARM Thumb-2 little endian |
| 998 | 1004 | ARMNT = 0x1c4, |
| 1005 | /// CEE |
| 1006 | CEE = 0xc0ee, |
| 1007 | /// CEF |
| 1008 | CEF = 0xcef, |
| 1009 | /// Hybrid PE |
| 1010 | CHPE_X86 = 0x3a64, |
| 999 | 1011 | /// EFI byte code |
| 1000 | 1012 | EBC = 0xebc, |
| 1001 | 1013 | /// Intel 386 or later processors and compatible processors |
| ... | ... | @@ -1019,7 +1031,11 @@ pub const MachineType = enum(u16) { |
| 1019 | 1031 | /// Power PC with floating point support |
| 1020 | 1032 | POWERPCFP = 0x1f1, |
| 1021 | 1033 | /// MIPS little endian |
| 1034 | R3000 = 0x162, |
| 1035 | /// MIPS little endian |
| 1022 | 1036 | R4000 = 0x166, |
| 1037 | /// MIPS little endian |
| 1038 | R10000 = 0x168, |
| 1023 | 1039 | /// RISC-V 32-bit address space |
| 1024 | 1040 | RISCV32 = 0x5032, |
| 1025 | 1041 | /// RISC-V 64-bit address space |
| ... | ... | @@ -1030,12 +1046,16 @@ pub const MachineType = enum(u16) { |
| 1030 | 1046 | SH3 = 0x1a2, |
| 1031 | 1047 | /// Hitachi SH3 DSP |
| 1032 | 1048 | SH3DSP = 0x1a3, |
| 1049 | /// SH3E little-endian |
| 1050 | SH3E = 0x1a4, |
| 1033 | 1051 | /// Hitachi SH4 |
| 1034 | 1052 | SH4 = 0x1a6, |
| 1035 | 1053 | /// Hitachi SH5 |
| 1036 | 1054 | SH5 = 0x1a8, |
| 1037 | 1055 | /// Thumb |
| 1038 | 1056 | Thumb = 0x1c2, |
| 1057 | /// Infineon |
| 1058 | TRICORE = 0x520, |
| 1039 | 1059 | /// MIPS little-endian WCE v2 |
| 1040 | 1060 | WCEMIPSV2 = 0x169, |
| 1041 | 1061 | |