N
Nimesh Shahdadpuri
Guest
I wish to monitor two signals in verilog and then determine which of the changed first and then do some work accordingly. I have two signals, sel1 and sel2, which i need to monitor.
Verilog code :
module tb(
input sel1,
input sel2
);
//Determine which of the two changed first
//if sel1 changed first :
//Do some work
//else
//Do some other work.
Please help
thank you
Verilog code :
module tb(
input sel1,
input sel2
);
//Determine which of the two changed first
//if sel1 changed first :
//Do some work
//else
//Do some other work.
Please help
thank you