Effect module added

This commit is contained in:
Imants Pulkstenis
2019-11-23 22:47:53 +02:00
parent ee7edb0638
commit 65b1690a47
7 changed files with 317 additions and 150 deletions
+16
View File
@@ -0,0 +1,16 @@
module eclipping_effect #( parameter
data_width = 16 // data width
)(
input clk,
input reset,
input signed [data_width-1: 0] i_data,
output signed [data_width-1: 0] o_data,
input [data_width-1: 0] i_treshhold
);
endmodule