OS
Lifer
diagram
as you can see, variables decsel, RegA, RegB aren't lined up in the simulation output.
But in my stimulus file, they were supposed to be synced at the same time. Source for the stimulus is as follows;
initial
begin
enable = 1;
datain = 10; decsel = 0; RegA = 0; RegB = 0;
#1 datain = 2; #1 decsel = 1; #1 RegA = 1; #1 RegB = 1;
#1 datain = 4; #1 decsel = 2; #1 RegA = 2; #1 RegB = 2;
What gives?
source for model
source for stimulus
as you can see, variables decsel, RegA, RegB aren't lined up in the simulation output.
But in my stimulus file, they were supposed to be synced at the same time. Source for the stimulus is as follows;
initial
begin
enable = 1;
datain = 10; decsel = 0; RegA = 0; RegB = 0;
#1 datain = 2; #1 decsel = 1; #1 RegA = 1; #1 RegB = 1;
#1 datain = 4; #1 decsel = 2; #1 RegA = 2; #1 RegB = 2;
What gives?
source for model
source for stimulus