summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-06-25 10:04:06 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-06-25 10:04:06 +0200
commitd8ae53634b4bacf058396d386c713158fdf5936d (patch)
tree7d17c930663c82a1da0b56c33c61986bdd3a4f91 /dev/LibCompiler
parentfbbcfd27436fe61799c79aec14f9c2c3fdf73497 (diff)
fix: PEF format fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler')
-rw-r--r--dev/LibCompiler/PEF.h5
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,
};