1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
/*
** Copyright (C) 2015 Klaus Rudolph <lts-rudolph@gmx.de>
**
** 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..
**
*/
`timescale 1ns / 1ns
module test;
wire clk1;
wire clk2;
wire [7:0] pb, pc, pd; // dummy only;
wire sum; // signal is connected 2 pin PA0 from both devices under test
wire out1;
wire out2;
wire mirror1;
wire mirror2;
wire driver_enabled1;
wire driver_enabled2;
wire logic_level1;
wire logic_level2;
wire unused;
defparam avr1.progfile="vst.elf";
defparam avr2.progfile="vst.elf";
ATmega32 avr1(clk1, { dummy, dummy, logic_level1, driver_enabled1, mirror1, sum, out1, sum}, pb, pc, pd);
ATmega32 avr2(clk2, { dummy, dummy, logic_level2, driver_enabled2, mirror2, sum, out2, sum}, pb, pc, pd);
// now lets get to clocks a bit shifted against each other
reg clkr1=1;
reg clkr2=1;
assign clk1 = clkr1;
assign clk2 = clkr2;
always begin
#10 clkr1 =~clkr1;
end
always begin
#5 clkr2 = ~clkr2;
end
initial begin
$display( "Core Number %d", avr1.core.handle );
$display( "Core Number %d", avr2.core.handle );
end
initial begin
//$avr_trace("avr.trace");
$dumpfile("vst.vcd");
$dumpvars(0, test);
#100_000 $finish;
end
endmodule
|