Someone can give me an example of code that can be called as a Cyclic Code ??? http://en.wikipedia.org/wiki/Cyclic_code
very interested in the code interpreter based on Cyclic CodeĀ ::) Thanks
this is as simple as it gets - lol
mov esi,offset DataArray
mov edx,0DABEh
mov ecx,ByteCount
HashIt: mov al,[esi]
xor al,dl
ror dl,1
mov [esi],al
not dl
inc esi
dec ecx
jnz HashIt
the new value is dependant on the last one - the pattern repeats every 32 bytes
a little more complicated but very common example...
http://en.wikipedia.org/wiki/Cyclic_redundancy_check
Thank you. Indeed examples are extremely simple, then probably worthwhile to rephrase. What methods of Cyclic Code exist in programming interpreters? Thanks
i am trying to figure out what you are after - lol
i suppose the parser might be considered cyclic
Yes exactly :red