Changes between Initial Version and Version 1 of SpecificationAdddaccu


Ignore:
Timestamp:
Apr 5, 2007, 11:21:32 PM (17 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SpecificationAdddaccu

    v1 v1  
     1{{{
     2#!html
     3<h1> Spécification fonctionnelle du circuit addaccu </h1>
     4}}}
     5
     6= Interface =
     7
     8Le circuits possède 4 entrées :
     9 * '''CK'''
     10 * '''a\[3:0\]'''
     11 * '''b\[3:0\]'''
     12 * '''sel'''
     13
     14Il possède une seule sortie :
     15 * '''s\[3:0\]'''
     16
     17= Registres internes =
     18
     19Le circuit contient un registre accumulateur '''accu\[3:0\],
     20dont l'écriture est contrôlée par le front montant du signal d'horloge '''CK'''.
     21
     22= Comportement =
     23
     24Si (sel == 0) x = a + b
     25Sinon         x = accu + b
     26
     27s = x
     28
     29Quand (CK passe de 0 à 1) accu = x
     30
     31