AbraaoAllysson

Untitled

May 11th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.58 KB | None | 0 0
  1. int saidaMux(int dec,int reset, int enable, int clock,int old_clock, int mul,int valor_registrador)
  2. {
  3.          
  4.     int valor = 0;
  5.  
  6.     if((!old_clock)&&(clock))
  7.     {
  8.  
  9.         if(enable)
  10.         {
  11.             if(reset)
  12.             {
  13.               return valor;
  14.             }
  15.            else if(dec==mul)
  16.            {
  17.              
  18.                 valor = valor_registrador;
  19.                 return valor;
  20.             }
  21.         }
  22.         else
  23.         {
  24.             valor = 0;
  25.             return valor;
  26.         }
  27.     }
  28.     else
  29.     {
  30.         return valor;
  31.     }
  32.    
  33. }
Add Comment
Please, Sign In to add comment