GENEDIT Wavestation/AD SEND segment fix 3-29-94 This fixes incorrect code in the SEND segment. Previously, only wave 'A' parameters were properly sent Find the code in the SEND segment as follows: ; V09 --> edit format block ; V08 --> transmission format block V09 = 0 V08 = 472 ; ; Nibblize, skipping dummy bytes V10 = V09 V12 = V08 V99 = 90 Execute "nibbleLH" V10 = V10 + 91 V12 = V12 + 180 Loop 4 V99 = 75 Execute "nibbleLH" V10 = V10 + 76 V12 = V12 + 150 V99 = 10 Execute "nibbleLH" V10 = V10 + 15 V12 = V12 + 20 EndLoop Replace with this code: ; 0 --> edit format block ; 472 --> transmission format block V09 = 0 V08 = 472 V10 = 0 V12 = 472 V99 = 90 Execute "nibbleLH" ; A V10 = 91 V12 = 652 V99 = 82 Execute "nibbleLH" V10 = 174 V12 = 816 V99 = 2 Execute "nibbleLH" ; B V10 = 181 V12 = 820 V99 = 82 Execute "nibbleLH" V10 = 264 V12 = 984 V99 = 2 Execute "nibbleLH" ; C V10 = 271 V12 = 988 V99 = 82 Execute "nibbleLH" V10 = 354 V12 = 1152 V99 = 2 Execute "nibbleLH" ; D V10 = 361 V12 = 1156 V99 = 82 Execute "nibbleLH" V10 = 444 V12 = 1320 V99 = 2 Execute "nibbleLH" ; In the old code, the wrong 'dummy' bytes were skipped.