mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-02-26 16:53:16 +00:00
Make wishbone_master_out and wb_io_master_out match
This makes it easier to parse the records in verilog because they are getting flattened into an array of bits by ghdl/yosys. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
committed by
Anton Blanchard
parent
d96ee21c39
commit
c6dfc19d89
@@ -16,9 +16,9 @@ package wishbone_types is
|
||||
type wishbone_master_out is record
|
||||
adr : wishbone_addr_type;
|
||||
dat : wishbone_data_type;
|
||||
sel : wishbone_sel_type;
|
||||
cyc : std_ulogic;
|
||||
stb : std_ulogic;
|
||||
sel : wishbone_sel_type;
|
||||
we : std_ulogic;
|
||||
end record;
|
||||
constant wishbone_master_out_init : wishbone_master_out := (adr => (others => '0'), dat => (others => '0'), cyc => '0', stb => '0', sel => (others => '0'), we => '0');
|
||||
|
||||
Reference in New Issue
Block a user