1 / 9

Testo

Testo.

Download Presentation

Testo

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Testo Una rete sequenziale asincrona ha due ingressi X1 e X2, che non cambiano mai di valore contemporaneamente. Il segnale X1 è periodico ed assume dapprima il valore 1 per 0,5T e poi il valore 0 per 0,5T. Il segnale X2 presenta il valore 1 per un tempo T ed il valore 0 per un tempo mai inferiore a 2T. L’uscita Z della rete deve presentare il valore 1 e mantenerlo poi esattamente per un tempo 1,5T, se e solo se in ingresso si verifica un fronte di salita di X2 in presenza di X1 = 1. L’attivazione dell’uscita, nel rispetto del vincolo sopra definito, deve avvenire senza inutili attese.

  2. Diagramma degli stati

  3. Tabella degli stati X1 X2

  4. Tabella triangolare delle implicazioni A, [BC], [CD], [CE], [DG],[DH], [EF], [EG], [EH], [FG]. Classi massime di compatibilità: A, [BC], [DH], [EFG]

  5. Assegnazione A => α [BC] => β [DH] => γ [EFG] => δ X1 X2

  6. Sintesi Y1 = X1X2!y2 + y1y2 + !X1y1 Y2 = !X1X2 + X1y2 Z = y1y2 + !X1y1 X1 X2 Y1 Y2

  7. VHDL processo : process(X1, X2, Y1, Y2) begin if (RESET = '1') then Y1 <= '0'; Y2 <= '0'; Z <= '0'; else Y1 <= (X1 and X2 and not(Y2)) or (Y1 and Y2) or (not(X1) and Y1); Y2 <= (not(X1) and X2) or (X1 and Y2); Z <= (Y1 and Y2) or (not(X2) and Y1); end if; end process;

  8. Simulazione behavioral

  9. Simulazione post-route

More Related