mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
280c8344cd
Preparation for merging with the wsjtx project repository.
11 lines
135 B
Fortran
11 lines
135 B
Fortran
subroutine graycode(dat,n,idir)
|
|
|
|
integer dat(n)
|
|
do i=1,n
|
|
dat(i)=igray(dat(i),idir)
|
|
enddo
|
|
|
|
return
|
|
end subroutine graycode
|
|
|