Replaced all instanced of DoubleWord to DWord and DoubleWordI to DWordI

This commit is contained in:
Santosh Srivatsan
2021-12-13 19:55:02 -05:00
parent e82d5fe48f
commit 4abfca4cb2
9 changed files with 60 additions and 60 deletions

View File

@@ -13,8 +13,8 @@ namespace vortex {
typedef uint8_t Byte;
typedef uint32_t Word;
typedef int32_t WordI;
typedef uint64_t DoubleWord;
typedef int64_t DoubleWordI;
typedef uint64_t DWord;
typedef int64_t DWordI;
typedef uint64_t Addr;
typedef uint32_t Size;