Support assignment of values

This commit is contained in:
2023-03-15 21:20:16 +01:00
parent 218b8e0e3b
commit ed71af970b
2 changed files with 11 additions and 3 deletions

View File

@@ -6,13 +6,13 @@ namespace JabyEngine {
namespace Memory_IO {
__declare_io_type(COM_DELAY, uint32_t,
void setup() {
this->value = 0x1325;
this->raw_value = 0x1325;
}
);
__declare_io_type(CD_DELAY, uint32_t,
void setup() {
this->value = 0x20943;
this->raw_value = 0x20943;
}
);