diff options
Diffstat (limited to 'dev/LibCompiler')
| -rw-r--r-- | dev/LibCompiler/PEF.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dev/LibCompiler/PEF.h b/dev/LibCompiler/PEF.h index 08ace3c..ad01a8b 100644 --- a/dev/LibCompiler/PEF.h +++ b/dev/LibCompiler/PEF.h @@ -40,15 +40,14 @@ namespace LibCompiler { enum { - kPefArchStart = 99, - kPefArchIntel86S = 100, + kPefArchIntel86S, kPefArchAMD64, kPefArchRISCV, kPefArch64000, /* 64x0 RISC architecture. */ kPefArch32000, kPefArchPowerPC, /* 64-bit POWER architecture. */ kPefArchARM64, - kPefArchCount = (kPefArchPowerPC - kPefArchIntel86S) + 1, + kPefArchCount = (kPefArchARM64 - kPefArchIntel86S) + 1, kPefArchInvalid = 0xFF, }; |
