tb_base: Fix various test benches

The tb_base.v verilog files does not contain a full module definition,
just some plain test code. In general the files is sourced inside the
test bench main module. As is, defining a timescale in these files will
generate an error, because timescale directive can not be inside a
module.

Delete all the timescale directive from these files.
main
Istvan Csomortani 2019-05-16 15:05:11 +01:00 committed by István Csomortáni
parent 1c8e71ec4e
commit 157afcbc33
3 changed files with 0 additions and 6 deletions

View File

@ -33,8 +33,6 @@
// ***************************************************************************
// ***************************************************************************
`timescale 1ns/100ps
reg clk = 1'b0;
reg [3:0] reset_shift = 4'b1111;
reg trigger_reset = 1'b0;

View File

@ -42,8 +42,6 @@
// is copyright © 2016-2017, Analog Devices, Inc.
//
`timescale 1ns/100ps
reg clk = 1'b0;
reg [3:0] reset_shift = 4'b1111;
reg trigger_reset = 1'b0;

View File

@ -33,8 +33,6 @@
// ***************************************************************************
// ***************************************************************************
`timescale 1ns/100ps
reg clk = 1'b1;
reg [3:0] reset_shift = 4'b1111;
reg trigger_reset = 1'b0;