Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

memory model does not see in the simvision

Status
Not open for further replies.

coshy

Member level 4
Joined
Mar 28, 2016
Messages
71
Helped
0
Reputation
0
Reaction score
1
Trophy points
1,288
Activity points
1,765
Hi..

Now I'm trying to implement the simple verilog file.

Code:
module top();

reg [7:0] mem[127:0];
...
initial begin
 repeat (46000) @(posedge wr_clk);
 $finish;
end
...
initial begin
 $shm_open("./wave");
 $shm_probe(top,"AS");
end
...
endmodule


and I run as "ncverilog +access+wrc top.v"
and there is no warning and error.

but can't find mem register in the simvision.

I can't understand this, how can I see the mem (memory) register in the simvision?
the other register which is not memory type is showing as well in the simvision.
but just only memory type register doesn't see in the simvision.

what am I supposed to do?
 

Your launch command in form that you specified does not start simvision. Add -gui.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top