OpenCores
URL https://opencores.org/ocsvn/can/can/trunk

Subversion Repositories can

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /can/tags/initial/bench
    from Rev 3 to Rev 161
    Reverse comparison

Rev 3 → Rev 161

/verilog/can_testbench.v
0,0 → 1,171
//////////////////////////////////////////////////////////////////////
//// ////
//// can_testbench.v ////
//// ////
//// ////
//// This file is part of the CAN Protocal Controller ////
//// http://www.opencores.org/projects/can/ ////
//// ////
//// ////
//// Author(s): ////
//// Igor Mohor ////
//// igorm@opencores.org ////
//// ////
//// ////
//// All additional information is avaliable in the README.txt ////
//// file. ////
//// ////
//////////////////////////////////////////////////////////////////////
//// ////
//// Copyright (C) 2002 Authors ////
//// ////
//// This source file may be used and distributed without ////
//// restriction provided that this copyright statement is not ////
//// removed from the file and that any derivative work contains ////
//// the original copyright notice and the associated disclaimer. ////
//// ////
//// This source file is free software; you can redistribute it ////
//// and/or modify it under the terms of the GNU Lesser General ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any ////
//// later version. ////
//// ////
//// This source 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 Lesser General Public License for more ////
//// details. ////
//// ////
//// You should have received a copy of the GNU Lesser General ////
//// Public License along with this source; if not, download it ////
//// from http://www.opencores.org/lgpl.shtml ////
//// ////
//////////////////////////////////////////////////////////////////////
//
// CVS Revision History
//
// $Log: not supported by cvs2svn $
//
//
 
// synopsys translate_off
`include "timescale.v"
// synopsys translate_on
`include "can_defines.v"
 
module can_testbench();
 
 
 
parameter Tp = 1;
 
 
 
 
reg clk;
reg rst;
reg [7:0] data_in;
wire [7:0] data_out;
reg cs, rw;
reg [7:0] addr;
reg rx;
reg idle;
integer start_tb;
 
/* Instantiate can_top module */
can_top i_can_top
(
.clk(clk),
.rst(rst),
.data_in(data_in),
.data_out(data_out),
.cs(cs),
.rw(rw),
.addr(addr),
.rx(rx),
.idle(idle)
);
 
 
// Generate clock signal 24 MHz
initial
begin
clk=0;
forever #20 clk = ~clk;
end
 
initial
begin
start_tb = 0;
data_in = 'hz;
cs = 0;
rw = 'hz;
addr = 'hz;
rx = 1;
rst = 1;
idle = 0;
#200 rst = 0;
#200 start_tb = 1;
end
 
 
// Main testbench
initial
begin
wait(start_tb);
 
/* Set bus timing register 0 */
write_register(8'h6, 8'h01);
/* Set bus timing register 1 */
write_register(8'h7, 8'h34);
#10;
idle = 0;
repeat (1000) @ (posedge clk);
// To sample two bits before hard synchronization starts
#1 rx=0;
repeat (10*4) @ (posedge clk);
#1 rx=1;
repeat (10*4) @ (posedge clk);
 
repeat (4) @ (posedge clk); /* Delete this line to have a rx change at the critical moment */
 
// Hard synchronization
#1;
idle = 1;
#1 rx=0;
repeat (10*4) @ (posedge clk);
#1 rx=1;
idle = 0;
repeat (10*4) @ (posedge clk);
#1 rx=0;
 
repeat (50000) @ (posedge clk);
$display("CAN Testbench finished.");
$stop;
end
 
 
 
 
task write_register;
input [7:0] reg_addr;
input [7:0] reg_data;
 
begin
@ (posedge clk);
#1;
addr = reg_addr;
data_in = reg_data;
cs = 1;
rw = 0;
@ (posedge clk);
#1;
addr = 'hz;
data_in = 'hz;
cs = 0;
rw = 'hz;
end
endtask
endmodule
/verilog/timescale.v
0,0 → 1,52
//////////////////////////////////////////////////////////////////////
//// ////
//// timescale.v ////
//// ////
//// ////
//// This file is part of the CAN Protocal Controller ////
//// http://www.opencores.org/projects/can/ ////
//// ////
//// ////
//// Author(s): ////
//// Igor Mohor ////
//// igorm@opencores.org ////
//// ////
//// ////
//// All additional information is avaliable in the README.txt ////
//// file. ////
//// ////
//////////////////////////////////////////////////////////////////////
//// ////
//// Copyright (C) 2002 Authors ////
//// ////
//// This source file may be used and distributed without ////
//// restriction provided that this copyright statement is not ////
//// removed from the file and that any derivative work contains ////
//// the original copyright notice and the associated disclaimer. ////
//// ////
//// This source file is free software; you can redistribute it ////
//// and/or modify it under the terms of the GNU Lesser General ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any ////
//// later version. ////
//// ////
//// This source 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 Lesser General Public License for more ////
//// details. ////
//// ////
//// You should have received a copy of the GNU Lesser General ////
//// Public License along with this source; if not, download it ////
//// from http://www.opencores.org/lgpl.shtml ////
//// ////
//////////////////////////////////////////////////////////////////////
//
// CVS Revision History
//
// $Log: not supported by cvs2svn $
//
//
 
 
`timescale 1ns/10ps
verilog/timescale.v Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.