From df66872feecb99f61eba552ce0f7c74268f922a3 Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 25 Jun 2021 18:30:30 +0200 Subject: [PATCH] pattern matching still works poorly, but window gen seems to mostly work now --- src/top.v | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/top.v b/src/top.v index 148a0f8..89f0f7e 100644 --- a/src/top.v +++ b/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),