OpenCores

Project maintainers

Details

Name: hamming
Created: Jun 11, 2004
Updated: Dec 20, 2009
SVN Updated: Mar 10, 2009
SVN: Browse
Latest version: download (might take a bit to start...)
Statistics: View
Bugs: 0 reported / 0 solved
Star1you like it: star it!

Other project properties

Category:ECC core
Language:Verilog
Development status:Planning
Additional info:Specification done
WishBone compliant: No
WishBone version: n/a
License:

Description

Hamming (7,4) Encoder: This core encodes every 4-bit message into 7-bit codewords in such a way that the decoder can correct any single-bit error.

The encoder uses the generator matrix:

G=[ 1110000
1001100
0101010
1101001]

The codewords are generated by

C = M * G

where M=[m1 m2 m3 m4] is the 4-bit message.