This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View Library Iee1.docx as PDF for free.
ARCHITECTURE secuencia OF pap IS BEGIN PROCESS(clk) VARIABLE Sreg : STD_LOGIC_VECTOR(1 TO 4); BEGIN IF Clk'EVENT AND Clk = '1' THEN Sreg(4):= w; Sreg(3):= Sreg(4); Sreg(2):= Sreg(3); Sreg(1):= Sreg(2); END IF; Q<= Sreg; END PROCESS; END secuencia;