1 / 18

O latch RS

O latch RS. TABELA DE TRANSIÇÃO DE ESTADOS. O latch RS/Outras implementações. Teoremas de DeMorgan: Um matemático chamado De Morgan desenvolveu um par de regras complementares usadas para converter a operação OU em  E e vice versa.  Teorema 1: Implementação:. S.

faye
Download Presentation

O latch RS

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. O latch RS TABELA DE TRANSIÇÃO DE ESTADOS

  2. O latch RS/Outras implementações Teoremas de DeMorgan: • Um matemático chamado De Morgan desenvolveu um par de regras complementares usadas para converter a operação OU em  E e vice versa.  Teorema 1: Implementação: S

  3. O latch RS/Outras implementações É possível ? O que muda ? Teoremas de DeMorgan: Teorema 2: Implementação: S S

  4. O latch RS Controlado

  5. O latch RS Controlado/Simulação

  6. Simulação/Estudo de caso Ruído Não afeta saída Ruído Não afeta saída

  7. Descrição Verilog/Latch RS controlado module latch_rs_controlado (output reg q, qinv, input c, r, s); always @(*)begin if (c = =1) begin if (r == 1 & s = = 0) begin q = 0; qinv = 1; end else if (r = = 0 & s = = 1) begin q = 1; qinv = 0; end end end endmodule Símbolo do Latch RS Controlado

  8. O latch RS Controlado com SET e RESET Assíncronos

  9. O latch RS com SET e RESET Assíncronos/Simulação reset assíncrono set assíncrono

  10. Símbolo

  11. O latch D TABELA DE TRANSIÇÃO LATCH RS CONTROLADO TABELA DE TRANSIÇÃO LATCH D

  12. O latch D TABELA DE TRANSIÇÃO LATCH D

  13. Descrição e Simulação latch D module latch_tipoD (output reg q, qinv, input c, d); always @(*) begin if (c = =1)begin q = d; qinv = !d; end end endmodule

  14. latch tipo D Descrição RTL module latch_tipoD_sem_qinv (output reg q, input c, d); always @(*) begin if (c = =1)begin q = d; end end endmodule

  15. latch tipo D Descrição RTL module latch_tipoD (output reg q, qinv, input c, d); always @(*) begin if (c= =1)begin q = d; qinv = !d; end end endmodule

  16. Latches com ativação em lógica complementar

  17. Célula LATCH da ALTERA

More Related