2006-08-26 11:35:28 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
// without warranty, 2004 by Wilson Snyder.
|
|
|
|
|
|
|
|
module t;
|
2019-07-14 00:30:32 +00:00
|
|
|
`define DEFINED
|
2006-08-26 11:35:28 +00:00
|
|
|
|
2019-07-14 00:30:32 +00:00
|
|
|
// NDEFINED isn't defined here:
|
|
|
|
`NDEFINED
|
2006-08-26 11:35:28 +00:00
|
|
|
|
2019-07-14 00:30:32 +00:00
|
|
|
// Botched directive (`timescale)
|
|
|
|
`imescale
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
initial $stop; // Should have failed
|
|
|
|
|
|
|
|
endmodule
|