top.v 87 Bytes
Newer Older
1 2 3 4 5 6 7 8
module top(
	input signed [7:0] x,
	output y,
);

assign y = x > -$sqrt(9);

endmodule