Preparation for building instructions

This commit is contained in:
2026-03-23 07:22:00 -06:00
parent b4560c208f
commit da1c090f19
18 changed files with 1454 additions and 100 deletions

View File

@@ -111,4 +111,20 @@ namespace spider {
return _size;
}
u8* RAM::begin() {
return this->_mem;
}
u8* RAM::end() {
return this->_mem + this->_size;
}
const u8* RAM::begin() const {
return this->_mem;
}
const u8* RAM::end() const {
return this->_mem + this->_size;
}
}