36#ifndef IMT_BASE_CORE_UTIL_REGISTER_H
37#define IMT_BASE_CORE_UTIL_REGISTER_H
50template<
typename mutability_policy_t, u
int32_t address, u
int32_t offset, u
int32_t w
idth>
52 static_assert(width > 0,
"invalid field of zero width");
53 static_assert(width + offset <= 64,
54 "register width overflow");
61 return mutability_policy_t::read(
62 reinterpret_cast<uint32_t volatile*
>(address),
72 mutability_policy_t::write(
73 reinterpret_cast<uint32_t volatile*
>(address),
83 mutability_policy_t::set(
84 reinterpret_cast<uint32_t volatile*
>(address),
92 mutability_policy_t::clear(
93 reinterpret_cast<uint32_t volatile*
>(address),
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Generates a bit mask of the given width left shifted offset bits from the least significant bit posit...
Template to define register at runtime, by providing the mutability policy, like Read Only/Write Only...
static void write(uint32_t value)
Write a subregister.
static void set()
Set all bits in the subregister to one.
static unsigned read()
Read the subregister.
static void clear()
Clear all bits in the subregister to zero.