From eb0fc08e0c77f00c890a77b78df8aa63d0413544 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Sat, 27 Feb 2016 06:51:40 +0000 Subject: [PATCH] Fix up some comments. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6501 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- lib/ldpc/msksim.f90 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ldpc/msksim.f90 b/lib/ldpc/msksim.f90 index b07001c9d..cf415c8e7 100644 --- a/lib/ldpc/msksim.f90 +++ b/lib/ldpc/msksim.f90 @@ -2,12 +2,14 @@ program msksim use, intrinsic :: iso_c_binding +! To change to a new code, edit the following line and the filenames +! that contain the parity check and generator matrices. parameter (N=128, M=48, K=80) ! M and N are global variables on the C side. + character(50) pchk_file,gen_file integer(1) codeword(1:N), decoded(1:K), message(1:K) real*8 lratio(N), rxdata(N) -! To change to a different code, edit the following 3 lines. pchk_file="./jtmode_codes/ldpc-128-80-sf13.pchk" gen_file="./jtmode_codes/ldpc-128-80-sf13.gen"