From 34119916dec0478b5c8dc27ec4bc8182428b9122 Mon Sep 17 00:00:00 2001 From: Themis Demetriades Date: Mon, 3 Jun 2024 14:37:08 +0100 Subject: [PATCH] Added constant for number of bits in a dword w/ S --- src/emulator.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emulator.h b/src/emulator.h index 5a78365..facbfd7 100644 --- a/src/emulator.h +++ b/src/emulator.h @@ -9,6 +9,7 @@ #define BYTE_BITS 8 #define WORD_BITS (BYTE_BITS * sizeof(word)) +#define DWORD_BITS (BYTE_BITS * sizeof(dword)) /************************************ * STRUCTS