Open rcgoodfellow opened 1 year ago
This code
bit<16> x = 0;
results in an internal compiler type for x that is 128 bits wide since constants without a width specifier default to 128-bit values.
x
This code
results in an internal compiler type for
x
that is 128 bits wide since constants without a width specifier default to 128-bit values.