heron_sqrt/verilog/heron_shift_1.v

11 lines
140 B
Coq
Raw Normal View History

2014-01-10 12:22:11 +00:00
module heron_shift_1 (A, Y);
input [31:0] A;
output [31:0] Y;
wire [31:0] Y;
assign Y[30:0] = A[31:1];
assign Y[31] = 0;
endmodule