Description: -- Hamming Decoder
-- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection.
-- download from: www.pld.com.cn & www.fpga.com.cn
LIBRARY ieee
USE ieee.std_logic_1164.ALL
ENTITY hamdec IS
PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4
dataout : OUT BIT_VECTOR(0 TO 3) --d0 d1 d2 d3
sec, ded, ne : OUT BIT) --diagnostic outputs
END hamdec
ARCHITECTURE ver1 OF hamdec IS
BEGIN
- [Hm] - Calculation of Hamming code
- [hammingcoding] - channel coding linear block code hamming
- [HaiminCoding] - It is a visual C 6.0 mfc prepared Haimin
- [VHDLexample49] - VHDL 49 examples, examples of rich, coun
- [HammingCodeing] - hamming code Matlab simulation
- [huffman] - The huffman algorithm for FPGA HDL codin
- [74HammingCode] - Using VHDL language can be achieved (7,4
- [hammingDec] - hamming/hamming code decoder code, usual
- [hybirisprot] - iris recognition code matlab + iris code
- [CRCDecoding] - CRC error detection process. Not only er
File list (Check if you may need any files):
HammingDecoder.doc