------------- Registers -- -------------
subtype CTRL_NUMCOMP_Field is HAL.UInt4;
type CTRL_Register is record
Reserved_0_27 : CTRL_Reserved_0_27_Field := 16#0#;
NUMCOMP : CTRL_NUMCOMP_Field := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
subtype CTRL_Reserved_0_27_Field is HAL.UInt28;
DWT_Periph : aliased DWT_Peripheral
with Import, Address => DWT_Base;
type DWT_Peripheral is record
CTRL : aliased CTRL_Register;
PCSR : aliased HAL.UInt32;
COMP0 : aliased HAL.UInt32;
MASK0 : aliased HAL.UInt32;
FUNCTION0 : aliased HAL.UInt32;
end record
with Volatile;