This commit is contained in:
Jaby
2024-09-29 17:27:23 +02:00
committed by Jaby
parent 3217bbc09b
commit 9647aae2e8
18 changed files with 167 additions and 173 deletions

View File

@@ -6,7 +6,7 @@ namespace JabyEngine {
using CD_DELAY_IO = IOPort<Memory_IO_Values::CD_DELAY>;
using COM_DELAY_IO = IOPort<Memory_IO_Values::COM_DELAY>;
static auto& CD_DELAY = __new_declare_io_port(CD_DELAY_IO, 0x1F801018);
static auto& COM_DELAY = __new_declare_io_port(COM_DELAY_IO, 0x1F801020);
static auto& CD_DELAY = __declare_io_port(CD_DELAY_IO, 0x1F801018);
static auto& COM_DELAY = __declare_io_port(COM_DELAY_IO, 0x1F801020);
}
}