fix blender bug
This commit is contained in:
parent
d9ab23defe
commit
d77319023c
|
@ -89,8 +89,8 @@ module ColorBlender #(
|
||||||
|
|
||||||
SATI_DATA: begin
|
SATI_DATA: begin
|
||||||
data_cal[0] <= |data_cal[0][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[0];
|
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[1] <= |data_cal[1][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[2] <= |data_cal[2][31 : OUT_DEPTH] ? {32{1'b1}} : data_cal[2];
|
||||||
end
|
end
|
||||||
|
|
||||||
SEND_DATA: begin
|
SEND_DATA: begin
|
||||||
|
|
2
isp.sv
2
isp.sv
|
@ -73,7 +73,7 @@ module isp #(
|
||||||
// reg in_receive;
|
// reg in_receive;
|
||||||
// always @(posedge clk) in_receive <= in_en;
|
// always @(posedge clk) in_receive <= in_en;
|
||||||
wire in_receive;
|
wire in_receive;
|
||||||
assign in_receive = ~in_ready;
|
assign in_receive = out_en;
|
||||||
|
|
||||||
assign out_clk = clk;
|
assign out_clk = clk;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue