Forum Discussion
Altera_Forum
Honored Contributor
14 years agoif you have a 16 bit register as the input
reg input_data;
reg a,b,c,d;
you can access 4bit segments of it like
a=input_data;
b=input_data;
c=input_data;
d=input_data; a register itself is a latch. what were you planning to achieve using the gated d latch?