diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2000-06-30 19:55:04 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2000-06-30 19:55:04 +0000 |
commit | f5b7f311d18d00e983b6bdbf548a2fa5620ba4fd (patch) | |
tree | 7bd32c58ee3dcd5bad3e76ac4ea009c64dcd01cd /cad/verilog | |
parent | 63ee94d24c87648b7bd265cc27eece3213e0a5de (diff) | |
download | pkgsrc-f5b7f311d18d00e983b6bdbf548a2fa5620ba4fd.tar.gz |
make the default timescale in the output VCD files be 1ns for compatibility
with viewers such as Dinotrace.
Diffstat (limited to 'cad/verilog')
-rw-r--r-- | cad/verilog/files/patch-sum | 3 | ||||
-rw-r--r-- | cad/verilog/patches/patch-aa | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/cad/verilog/files/patch-sum b/cad/verilog/files/patch-sum index d7e9f131e33..5ebdbb7d25c 100644 --- a/cad/verilog/files/patch-sum +++ b/cad/verilog/files/patch-sum @@ -1,4 +1,5 @@ -$NetBSD: patch-sum,v 1.4 2000/06/22 03:15:32 dmcmahill Exp $ +$NetBSD: patch-sum,v 1.5 2000/06/30 19:55:04 dmcmahill Exp $ +MD5 (patch-aa) = b6c4526b7458f1de95c4158aaf0c74ab MD5 (patch-ab) = 8e1ec1875b9f1c8a969205c81598be94 MD5 (patch-ad) = d875516e4fc53270d66101a60bc1e8e5 diff --git a/cad/verilog/patches/patch-aa b/cad/verilog/patches/patch-aa new file mode 100644 index 00000000000..b4e8090a6c5 --- /dev/null +++ b/cad/verilog/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.3 2000/06/30 19:55:06 dmcmahill Exp $ + +use a default timescale of 1ns instead of 1ps. This will make the VCD output +compatible with Dinotrace. + +--- vpi/sys_vcd.c.orig Fri Jun 2 22:22:15 2000 ++++ vpi/sys_vcd.c Fri Jun 30 15:51:40 2000 +@@ -252,5 +252,5 @@ + fprintf(dump_file, "$end\n"); + fprintf(dump_file, "$timescale\n"); +- fprintf(dump_file, "\t1ps\n"); ++ fprintf(dump_file, "\t1ns\n"); + fprintf(dump_file, "$end\n"); + } |