fix blender bug

This commit is contained in:
SikongJueluo 2024-07-09 18:49:44 +08:00
parent d9ab23defe
commit d77319023c
No known key found for this signature in database
GPG Key ID: D2D3D29A993716EA
2 changed files with 3 additions and 3 deletions

View File

@ -89,8 +89,8 @@ module ColorBlender #(
SATI_DATA: begin
data_cal[0] <= |data_cal[0][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[0];
data_cal[1] <= |data_cal[0][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[1];
data_cal[2] <= |data_cal[0][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[2];
data_cal[1] <= |data_cal[1][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[1];
data_cal[2] <= |data_cal[2][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[2];
end
SEND_DATA: begin

2
isp.sv
View File

@ -73,7 +73,7 @@ module isp #(
// reg in_receive;
// always @(posedge clk) in_receive <= in_en;
wire in_receive;
assign in_receive = ~in_ready;
assign in_receive = out_en;
assign out_clk = clk;