forkconfig
Member level 1
- Joined
- Jan 28, 2013
- Messages
- 32
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Activity points
- 1,655
Can I have a sensitivity list for my always block as follows:
wire clk;
reg [100:0] myVector;
reg doStuff;
always @(posedge doStuff or myVector)
so that if any bits of myVector changes or if doStuff goes high the block executes.
wire clk;
reg [100:0] myVector;
reg doStuff;
always @(posedge doStuff or myVector)
so that if any bits of myVector changes or if doStuff goes high the block executes.