URL
https://opencores.org/ocsvn/t6507lp/t6507lp/trunk
Subversion Repositories t6507lp
Compare Revisions
- This comparison shows the changes necessary to convert path
/t6507lp/trunk/rtl
- from Rev 231 to Rev 230
- ↔ Reverse comparison
Rev 231 → Rev 230
/verilog/controller_test.v
86,8 → 86,9
|
always @ (posedge clk_358 or negedge reset_n) begin |
if (reset_n == 1'b0) begin |
vert_counter <= 6'd0; |
hor_counter <= 8'd0; |
vert_counter <= 9'd0; |
vert_counter = 9'd0; |
end |
else begin |
if (hor_counter == 8'd227) begin // last colum |
/verilog/test_top.v
56,7 → 56,7
output VGA_VS; |
output VGA_HS; |
|
wire [11:0] pixel; |
//wire [11:0] pixel; |
wire [8:0] vert_counter; |
|
vga_controller vga_controller ( |