blob: c2514898bc7f2c2c9b3ab79720ddba8f63cbb9d7 [file] [log] [blame]
// Test enable circuitry
module simple(clock,
enable,
value_out
);
input clock;
input enable;
reg temp;
output value_out;
always @(posedge clock)
begin
if (enable == 1'b1) begin
temp <= 1'b0;
end
end
assign value_out = temp;
endmodule