I have 2 files a.v and b.v.
I have the same module defined in both the files, but I want compilation with the definition provided with b.v. So I am giving file order as:
b.v
a.v
but I get elab error related to ordering and the module is taken from a.v
Should I use any switch or am I not giving it in the correct order?
Please help.