stark43
Member level 1
Hello, I want to send parallel data to my serializer module (by bit shifting) and after serializing the incoming data once, I want it to stop until the other data arrives and not serialize the same data again. If I build a combinotional circuit and do it this way, I guess if my data does not change, it will not re-serialize and this will not work correctly.
For example, I know that if 0x23 data comes in consecutively, it will understand as if the data has not changed, because combinational always blocks are entered when there is a change. What is the suggested solution for this?
Code:
always(data_in)
begin
// serialization operation
end
For example, I know that if 0x23 data comes in consecutively, it will understand as if the data has not changed, because combinational always blocks are entered when there is a change. What is the suggested solution for this?