demo: Fix missing record in mac demo

Will eventually become part of trashernet, I guess. But for now,
let's add it to the top level.
This commit is contained in:
Markus Koch 2022-04-18 09:44:27 +02:00
parent 5c27b685dc
commit 0f7437e901
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@ architecture rtl of top_mac_test is
others => false
);
type configuration_t is record
mac_address : mac_addr_t;
end record configuration_t;
constant ETH_CONFIG : configuration_t := (
mac_address => (x"00", x"ff", x"ff", x"11", x"22", x"33")
);