VHDL Пример кода типа записи
1
type <record_name> is record
2
-- We declare all the elements which make up the record here
3
<element_name> : <type>;
4
end record <record_name>;
Nutty Narwhal