I have two variables
bit data_bit[31:0];
byte data_byte[];
I want to assign the value in data_bit to data_byte. The final output should have data type ‘byte’.
How should I proceed for this?
I have two variables
bit data_bit[31:0];
byte data_byte[];
I want to assign the value in data_bit to data_byte. The final output should have data type ‘byte’.
How should I proceed for this?