Convert Memory IO

This commit is contained in:
Jaby
2024-09-28 15:19:19 +02:00
parent 9c8102cb87
commit 2b03925201
2 changed files with 24 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "../ioport.hpp"
namespace JabyEngine {
namespace Memory_IO_Values {
__declare_io_value(CD_DELAY, uint32_t) {
static constexpr CD_DELAY create() {
return CD_DELAY{0x20943};
}
};
__declare_io_value(COM_DELAY, uint32_t) {
static constexpr COM_DELAY create() {
return COM_DELAY{0x1325};
}
};
}
}