// This is a component of pluto_step, a hardware step waveform generator // Copyright 2007 Jeff Epler // // This program 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 2 of the License, or // (at your option) any later version. // // This program 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 this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // install ubuntu package "verilog" from universe // Compile with: iverilog -DTESTING test_stepgen.v stepgen.v // run with "./a.out | less" and look at output for problems module test_stepgen(); reg clk; reg [4:0] vel; wire [19:0] pos; wire step, dir; stepgen #(16,4,16) s(clk, 1, pos, vel, 1, 0, step, dir, 3); integer q; reg ost; initial begin vel = 5'h8; // two useful test cases: // vel=5'h8 (max step speed) // vel=5'h2 (~1 step per repeat) q = 0; repeat(50) begin repeat(50) begin #20 clk<=1; #20 clk<=0; if(step && !ost) begin if(dir) q = q+1; else q = q - 1; end ost <= step; $display("%d %d %x %x %d %d %d %d %d", step, dir, vel, pos, s.state, s.ones, s.pbit, s.timer, q); end vel = 6'h20 - vel; end end endmodule