It is quite common in Silice to have something like...
uint1 COMMIT = uninitialized;
.
.
.
COMMIT := 0;
Is there any reason why these two lines cannot be combined into say...
uint1 COMMIT := 0;
Similarly, but not as important, to me anyway, as the above, in a unit definition, there are output lines that are always assigned later in the unit, the req_read and req_write in this example. Can they be marked as such in the unit definition?
It is quite common in Silice to have something like...
Is there any reason why these two lines cannot be combined into say...
Similarly, but not as important, to me anyway, as the above, in a unit definition, there are output lines that are always assigned later in the unit, the req_read and req_write in this example. Can they be marked as such in the unit definition?
as...