mirror of
https://github.com/sendyne/cppreg.git
synced 2025-05-09 23:24:05 +00:00
* For trivial read/write operations (over whole register) simpler implementations are now used to avoid unnecessary load/store instructions. * Merge write implementation has been revised to provide better performance when manipulating constant values. * `is_set` and `is_clear` are now available for all Field-based types. This closes #8.
18 lines
344 B
C++
18 lines
344 B
C++
//! Project-wide includes header.
|
|
/**
|
|
* @file cppreg_Defines.h
|
|
* @author Nicolas Clauvelin (nclauvelin@sendyne.com)
|
|
* @copyright Copyright 2010-2018 Sendyne Corp. All rights reserved.
|
|
*/
|
|
|
|
|
|
#ifndef CPPREG_CPPREG_INCLUDES_H
|
|
#define CPPREG_CPPREG_INCLUDES_H
|
|
|
|
|
|
#include <cstdint>
|
|
#include <limits>
|
|
|
|
|
|
#endif // CPPREG_CPPREG_INCLUDES_H
|