mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
21ad359673
fix the way the bus controller program worked, which generated evil inferred latches
77 lines
1.5 KiB
Verilog
77 lines
1.5 KiB
Verilog
/*
|
|
(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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
`default_nettype none
|
|
|
|
`ifdef SIM
|
|
module saturn_top;
|
|
`else
|
|
module saturn_top (
|
|
clk_25mhz,
|
|
btn,
|
|
led
|
|
);
|
|
|
|
input wire [0:0] clk_25mhz;
|
|
input wire [6:0] btn;
|
|
output reg [7:0] led;
|
|
|
|
wire [0:0] clk;
|
|
wire [0:0] reset;
|
|
wire [0:0] halt;
|
|
|
|
assign clk = clk_25mhz;
|
|
assign reset = btn[0];
|
|
assign led[0] = halt;
|
|
|
|
`endif
|
|
|
|
saturn_bus main_bus (
|
|
.i_clk (clk),
|
|
.i_reset (reset),
|
|
.o_halt (halt)
|
|
);
|
|
|
|
|
|
`ifdef SIM
|
|
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);
|
|
`endif
|
|
|
|
|
|
endmodule
|