Changes between Initial Version and Version 1 of Ticket #15303, comment 16
- Timestamp:
- Aug 1, 2024, 10:39:34 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15303, comment 16
initial v1 2 2 Pointers were WORDs in original SCI, that also was a hard memory limit (64k), but our SCI doesn't do that, instead it uses 2 WORDs, that's why we have reg_t. 3 3 This alone already caused tons of issues, that's also why I introduced type checking 10+ years ago, because some scripts do math against an offset and expect something useful to get returned. 4 Of course even that were bugs in original SCI, and sometimes it just happens to work, or it worked sometimes, and sometimes it didn't. 4 5 5 6 I don't think it's really worth it, but maybe there is a way that would be easier, idk.