New concept for IOPorts

This commit is contained in:
Jaby
2023-03-14 22:33:49 +01:00
parent b7f3d40a7c
commit 37192b537b
3 changed files with 34 additions and 5 deletions

View File

@@ -3,6 +3,18 @@
#include "../../Auxiliary/complex_bitmap.hpp"
namespace JabyEngine {
template<typename T>
struct NormalValue {
typedef T Value;
typedef T NakedValue;
};
template<typename T>
struct VolatileValue {
typedef volatile T Value;
typedef T NakedValue;
};
template<typename T>
struct VolatilePOD {
volatile T raw;