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
Xronos happily compiles this actor, which uses an unsigned 64bit integer:
actor CastActor() uint(size=32) In ==> uint(size=32) Out :
my_action: action In:[a] ==> Out:[d]
var
uint(size=32) b,
uint(size=64) c,
uint(size=32) d
do
b := 8;
c := a * b;
d := c / 8;
end
end
Xronos happily compiles this actor, which uses an unsigned 64bit integer:
Compiler output:
Can I take from that that the Verilog backend with Xronos does support unsigned 64bit integers?
The text was updated successfully, but these errors were encountered: