CY.Lim
Newbie level 5
Hi. All.
I'm sorry. I don't write english very well...
I designed Circuit and to make TEST Module for verification using Verilog HDL.
TEST Module's input type is *.vcd or *.vec file.
My Test Module is..
Problem is ....
1. Can I enter *.vcd or *.vec file into the TEST Moulde.
2. *.vcd is declared a port (wire) but *.vec is not. How do I declare port?
If anyone knows about this problem, I hope you can help me.
Thx for reading the long question.
I'm sorry. I don't write english very well...
I designed Circuit and to make TEST Module for verification using Verilog HDL.
TEST Module's input type is *.vcd or *.vec file.
Code:
*.vcd type | *.vec type
$scope module TOP $end | TIME ADJ_BUF CLK_SK[2:0]
$var wire 1 ! ADJ_BUF $end | 2.910E-03 1 110
$var wire 3 " CLK_SK[2:0] $end ( maybe wire name and Bus .. ) | 2.913E-03 1 101
... |
$enddefinitions $end |
#2910293876 ( maybe time... ) |
0! |
0" ......
My Test Module is..
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 `timescale 1ns / 1ps `include " ~ " module top ; reg ~ initial ~ wire ~ wreal ~ initial begin ~ end initial begin &shm_open("~"); $shm_probe("AC") end endmodule
Problem is ....
1. Can I enter *.vcd or *.vec file into the TEST Moulde.
2. *.vcd is declared a port (wire) but *.vec is not. How do I declare port?
If anyone knows about this problem, I hope you can help me.
Thx for reading the long question.
Last edited by a moderator: