Skip to content

Commit

Permalink
INIT
Browse files Browse the repository at this point in the history
  • Loading branch information
yhx committed May 16, 2016
0 parents commit e345e13
Show file tree
Hide file tree
Showing 18 changed files with 3,082 additions and 0 deletions.
8 changes: 8 additions & 0 deletions RTL/ll_ccie/ReLU.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module ReLU(
input [31:0] in,
output [31:0] out
);

assign out = in[31:31]?0:in;

endmodule
Loading

0 comments on commit e345e13

Please sign in to comment.