heron_sqrt/cadence/heron_comma_fix/functional/verilog.v

13 lines
248 B
Coq
Raw Normal View History

2014-01-18 10:59:04 +00:00
module heron_comma_fix (A,Y);
parameter comma = 8;
parameter comma_fix = comma / 2;
input [31:0] A;
output [31:0] Y;
wire [31:0] Y;
assign Y[(31 - comma_fix):0] = A[(31 - comma_fix):0];
assign Y[31:(31 - comma_fix)] = 0;
endmodule