Bit field struct and TDF extraction

This commit is contained in:
Nav
2022-03-04 15:33:31 +00:00
parent 914d5bc893
commit aa73b431ae
5 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <cstdint>
#include <string>
namespace Bloom::Targets::TargetDescription
{
struct BitField
{
std::string name;
std::uint8_t mask;
};
}