This is an old revision of the document!
Using pure structures
A pure structure is a user-defined data type that contains only int
/bool
or other pure structures. An example of a pure structure is:
deftype cache_entry (bool valid; int<32> data; int<16> tag) { }