From d8ae53634b4bacf058396d386c713158fdf5936d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 25 Jun 2025 10:04:06 +0200 Subject: fix: PEF format fixes. Signed-off-by: Amlal El Mahrouss --- dev/LibCompiler/PEF.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'dev/LibCompiler') 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, }; -- cgit v1.2.3