Hi, all
me again, I've read a definition of struct as follows:
-- Definition of the packet struct struct packet { kind : [good,bad]; addr : uint (bits : 2) ; len : uint (bits : 6) ; data [len] : list of byte ; !parity : byte ; }; |
Here, is kind a enumerated type, as it may already be defined?
Tao