mirror of
https://github.com/sendyne/cppreg.git
synced 2025-05-09 15:14:05 +00:00
This relies on a memory map implementation based on std::array and specialized over the register size. PackedRegister can now be used with all supported register sizes (i.e., widths). This relates to #7 and the finalization of the API before performance testing.
21 lines
378 B
C
21 lines
378 B
C
//! cppreg library header.
|
|
/**
|
|
* @file cppreg.h
|
|
* @author Nicolas Clauvelin (nclauvelin@sendyne.com)
|
|
* @copyright Copyright 2010-2018 Sendyne Corp. All rights reserved.
|
|
*/
|
|
|
|
|
|
#ifndef CPPREG_CPPREG_H
|
|
#define CPPREG_CPPREG_H
|
|
|
|
|
|
#include "Overflow.h"
|
|
#include "MergeWrite.h"
|
|
#include "Register.h"
|
|
#include "RegisterPack.h"
|
|
#include "Field.h"
|
|
|
|
|
|
#endif // CPPREG_CPPREG_H
|