diff options
Diffstat (limited to 'src/synth/synth-values.ads')
-rw-r--r-- | src/synth/synth-values.ads | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/synth-values.ads b/src/synth/synth-values.ads index 357bd1006..21eeaf0c2 100644 --- a/src/synth/synth-values.ads +++ b/src/synth/synth-values.ads @@ -79,7 +79,13 @@ package Synth.Values is type Value_Array_Acc is access Value_Array_Type; type Value_Range_Type is record + -- An integer range. Dir : Iir_Direction; + + -- Netlist representation: signed or unsigned, width of bus. + Is_Signed : Boolean; + W : Width; + Left : Int64; Right : Int64; end record; |