Replace load_byte and store_byte with pointer dereferencing #164

Open
opened 2025-11-25 11:46:49 +01:00 by belka · 0 comments
Owner

load_byte and store_byte are built-in procedures because the only type supported is 4-byte word, so it isn't possible to write a single byte.

Expressions are now annotated with their type. So if I add a byte pointer, I can implement dereferencing it and the both functions won't be needed anymore.

`load_byte` and `store_byte` are built-in procedures because the only type supported is 4-byte word, so it isn't possible to write a single byte. Expressions are now annotated with their type. So if I add a byte pointer, I can implement dereferencing it and the both functions won't be needed anymore.
belka added the type system label 2025-11-25 11:47:34 +01:00
Sign in to join this conversation.