Tidying RISC-V register structs

This commit is contained in:
Nav
2024-09-04 00:13:55 +01:00
parent e327fe7826
commit 2a01f727bf
6 changed files with 49 additions and 55 deletions

View File

@@ -17,12 +17,10 @@ namespace DebugToolDrivers::Protocols::RiscVDebugSpec::DebugModule::Registers
SIZE_128 = 0x04,
};
bool write:1 = false;
bool postIncrement:1 = false;
MemorySize size:3 = MemorySize::SIZE_32;
bool virtualAddress:1 = false;
constexpr MemoryAccessControlField() = default;
bool write:1;
bool postIncrement:1;
MemorySize size:3;
bool virtualAddress:1;
constexpr MemoryAccessControlField(
bool write,