qwerty Posted January 11, 2017 Report Share Posted January 11, 2017 I want to model a memory of depth 2048 and width 64 bits. Currently I doing as below and when i am running the walk_mem sequence, its going from 0 to 2048 rather than 2047. super.new(name, 'h101, 64, "RW", UVM_NO_COVERAGE) Thanks in advance Quote Link to comment Share on other sites More sharing options...
tudor.timi Posted February 17, 2017 Report Share Posted February 17, 2017 The second argument for new(...) is the number of memory locations. You should call: new(..., 2048, 64, ...); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.