----- "Sylvere Teissier" <[email protected]> a écrit : > In grt-signals.ads there is the Ghdl_Signal record defined like this: > > type Ghdl_Signal is record > -- Fields known by ghdl. > Value : Value_Union; > Driving_Value : Value_Union; > Last_Value : Value_Union; > Last_Event : Std_Time; > Last_Active : Std_Time; > > [...others elements...] > end record; > > "Fields known by ghdl" => does it means that the next elements of the > structure are only private to GRT and can be changed without > impacting > the compiled vhdl code (generated by ghdl) functionality ?
Correct. Code generated by the compiler directly access to the first 5 fields. The others are hidden. Tristan. _______________________________________________ Ghdl-discuss mailing list [email protected] https://mail.gna.org/listinfo/ghdl-discuss
