Added constant for number of bits in a dword w/ S

This commit is contained in:
Themis Demetriades 2024-06-03 14:37:08 +01:00
parent 9af558a831
commit 34119916de

View File

@ -9,6 +9,7 @@
#define BYTE_BITS 8 #define BYTE_BITS 8
#define WORD_BITS (BYTE_BITS * sizeof(word)) #define WORD_BITS (BYTE_BITS * sizeof(word))
#define DWORD_BITS (BYTE_BITS * sizeof(dword))
/************************************ /************************************
* STRUCTS * STRUCTS