pattern matching still works poorly, but window gen seems to mostly work now
This commit is contained in:
parent
31aee929cc
commit
df66872fee
1 changed files with 5 additions and 9 deletions
14
src/top.v
14
src/top.v
|
|
@ -177,8 +177,6 @@ wire [15:0] glyph_buffer_w_addr;
|
|||
wire [19:0] glyph_buffer_w_data;
|
||||
|
||||
/* matcher */
|
||||
wire win_hsync;
|
||||
wire win_vsync;
|
||||
wire win_blank;
|
||||
wire [11:0] win_w;
|
||||
wire [11:0] win_h;
|
||||
|
|
@ -187,7 +185,7 @@ wire out_data_valid;
|
|||
wire [23:0] out_data;
|
||||
wire [7:0] matcher_debug;
|
||||
|
||||
assign debug = {matcher_debug[3:2], win_blank, win_locked, out_data_en, out_data_valid}; // win_hsync, win_vsync, win_blank, win_locked
|
||||
assign debug = {matcher_debug[3:2], win_blank, win_locked, out_data_en, out_data_valid};
|
||||
|
||||
/* term renderer */
|
||||
wire [7:0] win_red;
|
||||
|
|
@ -292,8 +290,8 @@ term_renderer #(
|
|||
.rst(rst),
|
||||
.clk(clk),
|
||||
|
||||
.in_vsync(win_vsync),
|
||||
.in_hsync(win_hsync),
|
||||
.in_vsync(in_vsync),
|
||||
.in_hsync(in_hsync),
|
||||
|
||||
.glyphmem_data(glyphmem_r_data),
|
||||
.glyphmem_r_addr(glyphmem_r_addr),
|
||||
|
|
@ -322,8 +320,6 @@ window_matcher window_matcher_i (
|
|||
.in_green(in_green),
|
||||
.in_blue(in_blue),
|
||||
|
||||
.win_hsync(win_hsync),
|
||||
.win_vsync(win_vsync),
|
||||
.win_blank(win_blank),
|
||||
.win_locked(win_locked),
|
||||
.win_w(win_w),
|
||||
|
|
@ -361,8 +357,8 @@ ila_0 i_ila_0 (
|
|||
.probe5(in_blank),
|
||||
.probe6(in_hsync),
|
||||
.probe7(in_vsync),
|
||||
.probe8(win_hsync),
|
||||
.probe9(win_vsync),
|
||||
.probe8(1'b0),
|
||||
.probe9(1'b0),
|
||||
.probe10(win_blank),
|
||||
.probe11(win_locked),
|
||||
.probe12(out_data_en),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue