Quiero escribir un registro de 32 bits a un registro de 22 bits mientras se conserva el número y su signo.
reg [31:0] test_dat0; //test_dat0 <= -4 (binaire)
reg [22:0] test_dat1;
test_dat1 <= test_dat0 ; ??? //what is the value of test_dat1 here
es correcto? gracias