aboutsummaryrefslogtreecommitdiffstats
path: root/src/hal/components/bin2gray.comp
blob: c5b33a0651daff0b93e56d72f5d5bb736b410f28 (plain)
1
2
3
4
5
6
7
8
9
component bin2gray "convert a number to the gray-code representation";
description """Converts a number into gray-code""";
pin in unsigned in "binary code in";
pin out unsigned out "gray code out";
license "GPL";
author "Andy Pugh";
function _ nofp;
;;
out = (in >> 1) ^ in;
bues.ch cgit interface