This commit is contained in:
2024-09-29 17:27:23 +02:00
parent 5292b7bf9f
commit 6680c4d5a3
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);
}
}