| module beam_tb; | |
| reg clk; | |
| reg reset; | |
| integer cc; | |
| reg trace; | |
| initial begin | |
| if ($test$plusargs("vcd")) begin | |
| $dumpfile("beam.vcd"); | |
| $dumpvars(5,beam_tb); | |
| end | |
| trace = $test$plusargs("trace"); | |
| reset=0; | |
| $display("Non-checking testbench. Will always PASS"); | |
| for (cc=0; cc<1500; cc=cc+1) begin | |
| clk=0; #5; | |
| clk=1; #5; | |
| end | |
| $display("PASS"); | |
| $finish(0); | |
| end | |
| // `ifdef SIMULATE | |
| // Beam pulse rate = 1300 MHz / 1400 = 928.57 kHz | |
| // Clock rate = 1320 MHz / 14 = 94.286 MHz | |
| // 13 beam pulses = 1320 clocks = 14 us | |
| reg [11:0] phase_step = 12'd13; | |
| reg [11:0] modulo = -12'd1320; | |
| wire [11:0] pulse; | |
| beam dut(.clk(clk), .ena(1'b1), .reset(reset), | |
| .pulse(pulse), | |
| .phase_step(phase_step), .modulo(modulo), | |
| .phase_init(12'b0)); | |
| always @(posedge clk) begin | |
| #1; | |
| if (trace && (pulse!=0)) $display(cc,pulse); | |
| end | |
| // Keep from having to look at 3000 boring cycles at the beginning | |
| // of a simulation | |
| initial begin #1; dut.phase=-26; end | |
| endmodule | |