/* (c) Raphaƫl Jacquot 2019 This file is part of hp_saturn. hp_saturn is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. hp_saturn is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Foobar. If not, see . */ `default_nettype none `ifdef SIM module saturn_top; saturn_bus main_bus ( .i_clk (clk), .i_reset (reset), .o_halt (halt) ); reg [0:0] clk; reg [0:0] reset; wire [0:0] halt; initial begin $display("TOP : starting the simulation"); clk = 0; reset = 1; @(posedge clk); @(posedge clk); @(posedge clk); reset = 0; $display("TOP : reset done, waiting for instructions"); @(posedge halt); $display("TOP : instructed to stop, halt is %b", halt); $finish; end always #10 clk = (clk === 1'b0); endmodule `endif