You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently representing memory as fully linear, which makes it fast for reading. However, setRom is a non-negligible amount of logic.
What if we had distinct pages of memory instead?
mem: [8]*[1000]u8,
In this scheme, setRom can be a simple pointer swap and we can still get away with fast lookup. The biggest challenge would be exposing this to the memory debugger.
The text was updated successfully, but these errors were encountered:
We are currently representing memory as fully linear, which makes it fast for reading. However, setRom is a non-negligible amount of logic.
What if we had distinct pages of memory instead?
In this scheme, setRom can be a simple pointer swap and we can still get away with fast lookup. The biggest challenge would be exposing this to the memory debugger.
The text was updated successfully, but these errors were encountered: