V
valentin tihomirov
Guest
Yes, writing 'procedure' I was thinking about the process .Where do you suggest I give my shift_out line then....Should I give it
outside the process instead?
Are you insane? Design is all about reuse and avoiding redundancies. All youwhen 625 => shift_out <= shift_register(624);
when 624 => shift_out <= shift_register(623);
when 623 => shift_out <= shift_register(622);
need:
shift_out <= shift_register(offset);
.... and do it outside the process. At least outside the clocked loading
block of the process.