- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
am new to model sim when am do simulation am getting error loading design please give solution for this
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This could be due to the module name and the instance name are the same. Example:
module counter_tb;
reg clk, reset, enable;
wire [3:0] count;
counter_tb U0 (
.clk (clk),
.reset (reset),
.enable (enable),
.count (count)
);
endmodule
Try rename one of them (counter_tb) into a different name.
By sharing your code, then I can further debug and provide a better answer.
p.s. Don’t forget to Reply, and Select the Best Answer. :)

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page