Merge pull request #261 from antonblanchard/wishbone_layout
authorAnton Blanchard <anton@linux.ibm.com>
Mon, 21 Dec 2020 03:36:19 +0000 (14:36 +1100)
committerGitHub <noreply@github.com>
Mon, 21 Dec 2020 03:36:19 +0000 (14:36 +1100)
Make wishbone_master_out and wb_io_master_out match

wishbone_types.vhdl

index 22c3e20604834d09576720a0da2865f512d424e3..210ac43ba247a21eb628087bf4fd4b9fd2fedc11 100644 (file)
@@ -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');