Jump to content

Determining change in signals


Recommended Posts

I wish to monitor two signals and wish to determine which of the two changes first and then do some work. 

module tb(
input sel1,
input sel2
);
//Determining which of the two changes first
// if sel1 changed first 
	//do some work
//else
	//do some other work

endmodule

There are two signals sel1 and sel2 and I wish to monitor which of the following changed first and then do some work. Can someone help me in doing the same. 

Thank you.

Link to comment
Share on other sites

module who_changed_first(input a, b, start);
always @(posedge start) begin
  byte changed;
  WATCHERS: fork
    @a changed = "a";
    @b changed = "b";
  join_any
  disable WATCHERS; //< prevent others from overwriting
  case (changed)
    "a": work_1;
    "b": work_2;
  endcase
end

Assumes SystemVerilog. If Verilog you will need to add .

See https://edaplayground.com/x/2NXz for example code.

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...