WSJT-X/lib/77bit/encode77.f90

43 lines
929 B
Fortran
Raw Normal View History

2018-06-26 15:20:39 -04:00
program encode77
2018-06-21 10:51:19 -04:00
character msg*37,msg0*37,cerr*1
2018-06-26 15:20:39 -04:00
character*77 c77
2018-06-21 10:51:19 -04:00
open(10,file='msgtypes.txt',status='old')
! Skip over first two lines
read(10,1001) cerr
read(10,1001) cerr
1001 format(a1)
do iline=1,999
2018-06-26 15:20:39 -04:00
read(10,1002,end=999) i3a,n3a,msg0
2018-06-21 10:51:19 -04:00
1002 format(i1,i4,1x,a37)
i3=i3a
n3=n3a
if(i3a.gt.1 .or. n3a.gt.5) cycle
2018-06-26 15:20:39 -04:00
call pack77(msg0,i3,n3,c77)
call unpack77(c77,msg)
2018-06-21 10:51:19 -04:00
cerr=' '
if(i3a.ne.i3 .or. n3a.ne.n3 .or. msg.ne.msg0) cerr='*'
2018-06-26 15:20:39 -04:00
write(*,1004) i3,n3,cerr,msg0,msg
1004 format(i1,'.',i1,1x,a1,1x,a37,1x,a37)
2018-06-21 10:51:19 -04:00
enddo
2018-06-26 15:20:39 -04:00
999 end program encode77
2018-06-21 10:51:19 -04:00
include '../chkcall.f90'
2018-06-26 15:20:39 -04:00
include 'pack77.f90'
include 'unpack77.f90'
include 'pack28.f90'
include 'unpack28.f90'
include 'split77.f90'
include 'pack77_01.f90'
include 'pack77_02.f90'
include 'pack77_03.f90'
include 'pack77_1.f90'
2018-06-26 15:20:39 -04:00
include 'chk77_2.f90'
include 'chk77_3.f90'
include 'packtext77.f90'
include 'unpacktext77.f90'