We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Longs should eventually become 4-byte. (Now they're still int-sized.)
The text was updated successfully, but these errors were encountered:
Some code for adding two 32-bit numbers, each composed of a L and H word. In GCL notation:
{ long3 = long1 + long2 } { long1: L1 H1 } { long2: L2 H2 } { long3: L3 H3 } L1 L2+ L3= L1 L2^ [if<0 L3^ else L1] { carry in MSB } [if<0 1 else 0] { transfer carry to LSB } H1+ H2+ H3=
Sorry, something went wrong.
Suggesting to close this issue since glcc does this already.
No branches or pull requests
Longs should eventually become 4-byte. (Now they're still int-sized.)
The text was updated successfully, but these errors were encountered: