replaces virtual functions with memory pointers (kind of)

This commit is contained in:
2025-03-11 08:31:25 +01:00
parent 57d5ea92be
commit fb0f6255e9
5 changed files with 26 additions and 11 deletions

View File

@@ -263,7 +263,7 @@ private:
return iss::Err;
// }
} else {
if (this->core.read(phys_addr_t(pc.access, pc.space, pc.val), 4, data) != iss::Ok)
if (this->core.read(iss::address_type::PHYSICAL, pc.access, pc.space, pc.val, 4, data) != iss::Ok)
return iss::Err;
}