home *** CD-ROM | disk | FTP | other *** search
/ ftp.parl.clemson.edu / 2015-02-07.ftp.parl.clemson.edu.tar / ftp.parl.clemson.edu / pub / classes / ece426.ps / fa96proj1.txt < prev    next >
Text File  |  2001-03-01  |  638b  |  17 lines

  1. ECE 426 Project # 1
  2.  
  3. Due in class, Friday Sept. 20, 1996
  4.  
  5. Using the Cadence design tools, implement a BCD to binary converter.
  6.  
  7.     BCD is Binary Coded Decimal.  Each decimal number is stored in 4 four bits.  The number 52 would look like this in BCD:
  8.     01010010
  9.  
  10. You need to design hardware that will convert that to the binary value 52:
  11.     0110100
  12.  
  13. Notice the binary representation is more efficient and will only need seven bits to cover all possible eight bit BCD inputs.
  14.  
  15. You should use TTL or other commercially available parts to design this converter.  This can be done with pure combinational logic ( no internal state ).  Good luck!
  16.  
  17.