fix: off-by-one when handling TCM addresses

This commit is contained in:
Rekai Nyangadzayi Musuka 2023-09-28 21:35:01 -05:00
parent 481271ba2a
commit 1bd96304ba
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ pub fn Arm32(comptime isa: Architecture) type {
if (address < 0x0000_0000 + self.itcm.virt.size)
return writeInt(T, self.itcm.buf[address & self.itcm.virt.mask ..][0..@sizeOf(T)], value);
if (dtcm_base < address and address < dtcm_base + dtcm_size)
if (dtcm_base <= address and address < dtcm_base + dtcm_size)
return writeInt(T, self.dtcm.buf[address & self.dtcm.virt.mask ..][0..@sizeOf(T)], value);
}