OpenCores
URL https://opencores.org/ocsvn/a-z80/a-z80/trunk

Subversion Repositories a-z80

[/] [a-z80/] [trunk/] [cpu/] [toplevel/] [test_fuse.sv] - Diff between revs 3 and 6

Only display areas with differences | Details | Blame | View Log

Rev 3 Rev 6
//--------------------------------------------------------------
//--------------------------------------------------------------
// Testbench using Fuse Z80 emulator test vectors
// Testbench using Fuse Z80 emulator test vectors
//--------------------------------------------------------------
//--------------------------------------------------------------
`include "z80.svh"
`include "z80.svh"
module test_bench_fuse(z80_if.tb z);
module test_bench_fuse(z80_if.tb z);
assign clk = z.CLK;
assign clk = z.CLK;
integer f;
integer f;
// Instead of the PC register, we read the address of the next instruction
// Instead of the PC register, we read the address of the next instruction
logic [15:0] pc;
logic [15:0] pc;
initial begin : init
initial begin : init
    z.nWAIT <= `CLR;
    z.nWAIT <= `CLR;
    z.nINT <= `CLR;
    z.nINT <= `CLR;
    z.nNMI <= `CLR;
    z.nNMI <= `CLR;
    z.nBUSRQ <= `CLR;
    z.nBUSRQ <= `CLR;
    z.nRESET <= `CLR;
    z.nRESET <= `CLR;
    // Run all the tests and write the result to a file
    // Run all the tests and write the result to a file
    f = $fopen("fuse.result.txt");
    f = $fopen("fuse.result.txt");
    `include "test_fuse.i"
    `include "test_fuse.vh"
    $fclose(f);
    $fclose(f);
end : init
end : init
endmodule
endmodule
module test_fuse();
module test_fuse();
bit clk = 1;
bit clk = 1;
initial repeat (`TOTAL_CLKS) #1 clk = ~clk;
initial repeat (`TOTAL_CLKS) #1 clk = ~clk;
z80_if z80(clk);            // Instantiate the Z80 bus interface
z80_if z80(clk);            // Instantiate the Z80 bus interface
z80_top_ifc_n dut(z80);     // Create an instance of our Z80 design
z80_top_ifc_n dut(z80);     // Create an instance of our Z80 design
test_bench_fuse tb(z80);    // Create an instance of the test bench
test_bench_fuse tb(z80);    // Create an instance of the test bench
ram ram( .Address(z80.A), .Data(z80.D), .CS(z80.nMREQ), .WE(z80.nWR), .OE(z80.nRD) );
ram ram( .Address(z80.A), .Data(z80.D), .CS(z80.nMREQ), .WE(z80.nWR), .OE(z80.nRD) );
io  io( .Address(z80.A), .Data(z80.D), .CS(z80.nIORQ), .WE(z80.nWR), .OE(z80.nRD) );
io  io( .Address(z80.A), .Data(z80.D), .CS(z80.nIORQ), .WE(z80.nWR), .OE(z80.nRD) );
endmodule
endmodule
 
 

powered by: WebSVN 2.1.0

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