Merge pull request #261 from antonblanchard/wishbone_layout

Make wishbone_master_out and wb_io_master_out match
cache-tlb-parameters-2
Anton Blanchard 3 years ago committed by GitHub
commit 39c826aa46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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');

Loading…
Cancel
Save