Skip to content

Commit f952b6e

Browse files
committed
update rtl with fully generated RTL
1 parent d410dd6 commit f952b6e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

verilog/rtl/user_project_wrapper.v

+5-6
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ module wb_bus(
5353
.tx(io_out[13:13]),
5454
.IRQ(user_irq[0])
5555
);
56-
assign io_oen[13:12] = 2'b10;
5756

5857
// Instantiate slave UART1 of type EF_UART_WB
5958
EF_UART_WB UART1 (
@@ -70,7 +69,7 @@ module wb_bus(
7069
.tx(io_out[15:15]),
7170
.IRQ(user_irq[1])
7271
);
73-
assign io_oen[15:14] = 2'b10;
72+
7473
// Instantiate slave PORTA of type EF_GPIO8_WB
7574
EF_GPIO8_WB PORTA (
7675
.clk_i(wb_clk),
@@ -137,10 +136,10 @@ module wb_bus(
137136
assign io_out[10] = 1'b0;
138137
assign io_oen[11] = 1'b1;
139138
assign io_out[11] = 1'b0;
140-
assign io_oen[14] = 1'b1;
141-
assign io_out[14] = 1'b0;
139+
assign io_oen[12] = 1'b0;
140+
assign io_oen[13] = 1'b1;
141+
assign io_oen[14] = 1'b0;
142142
assign io_oen[15] = 1'b1;
143-
assign io_out[15] = 1'b0;
144143
assign io_oen[24] = 1'b1;
145144
assign io_out[24] = 1'b0;
146145
assign io_oen[25] = 1'b1;
@@ -223,4 +222,4 @@ module user_project_wrapper #(
223222
.user_irq(user_irq)
224223
);
225224
assign io_oeb = ~internal_io_oen;
226-
endmodule
225+
endmodule

0 commit comments

Comments
 (0)