S
steven
Guest
Hi,
I have a testbench in which I am using access types to form a linked list.
e.g.
type MyType ;
myAccess is access MyType ;
type MyType is record
Data : integer ;
Next : myAccess ;
end record ;
signal MyObject : MyType
etc.
Is it possible to traverse the linked list interactively in the ModelSim 5.7
simulator?
If I
How do I examine the object at address 20E00F8?
Thanks,
Steven
I have a testbench in which I am using access types to form a linked list.
e.g.
type MyType ;
myAccess is access MyType ;
type MyType is record
Data : integer ;
Next : myAccess ;
end record ;
signal MyObject : MyType
etc.
Is it possible to traverse the linked list interactively in the ModelSim 5.7
simulator?
If I
examine MyObject
{0 [20E00F8]}
How do I examine the object at address 20E00F8?
Thanks,
Steven