DDIMM DDR5 calculation fix

Changed the way the number of channels and the package ranks were
calculated

Change-Id: I8341ac21a0659e484dd1960df4a3e96f7adeebb4
Signed-off-by: Jinu Joy Thomas <jinu.joy.thomas@in.ibm.com>
diff --git a/const.hpp b/const.hpp
index b8499a9..bbe6ee9 100644
--- a/const.hpp
+++ b/const.hpp
@@ -99,6 +99,8 @@
 static constexpr auto VALUE_7 = 7;
 static constexpr auto VALUE_8 = 8;
 
+static constexpr auto MASK_BYTE_BITS_6 = 0x40;
+static constexpr auto MASK_BYTE_BITS_7 = 0x80;
 static constexpr auto MASK_BYTE_BITS_01 = 0x03;
 static constexpr auto MASK_BYTE_BITS_345 = 0x38;
 static constexpr auto MASK_BYTE_BITS_012 = 0x07;