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
The types short, ushort, byte, and sbyte should be added, in order to facilitate memory-constrained operations (such as emulating an 8-bit CPU).
As WASM does not currently support signed i8 or i16 arithmetic, the types would need to be restricted to being used in struct fields only, or extra truncation operations would need to be generated during operations. I haven't decided yet if the truncation is worthwhile.
The text was updated successfully, but these errors were encountered:
The types
short
,ushort
,byte
, andsbyte
should be added, in order to facilitate memory-constrained operations (such as emulating an 8-bit CPU).As WASM does not currently support signed i8 or i16 arithmetic, the types would need to be restricted to being used in struct fields only, or extra truncation operations would need to be generated during operations. I haven't decided yet if the truncation is worthwhile.
The text was updated successfully, but these errors were encountered: