-
Notifications
You must be signed in to change notification settings - Fork 0
/
adt2text.pas
1601 lines (1548 loc) · 77.8 KB
/
adt2text.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit AdT2text;
{$S-,Q-,R-,V-,B-,X+}
{$PACKRECORDS 1}
interface
const
{__AT2VER__}at2ver = '2.3.56';
{__AT2DAT__}at2date = '07-01-2017';
{__AT2LNK__}at2link = '1:03pm';
const
_ADT2_TITLE_STRING_ = '/´DLiB TR/´CK3R ][';
{$IFDEF GO32V2}
_PLATFORM_STR_ = 'DOS';
{$ELSE}
_PLATFORM_STR_ = 'SDL';
{$ENDIF}
const
{$IFDEF GO32V2}
HELP_LINES = 1129;
{$ELSE}
HELP_LINES = 1157;
{$ENDIF}
{$IFDEF GO32V2}
const
ascii_line_01 = ' Ú-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ--ùú úù-¿';
ascii_line_02 = ' ³ ~Û~`²`° ~Û~`²`° ~ÛÛÛÛÛÛÛÛÛ~`²`° ~ÛÛÛÛÛÛ~`²`° ³';
ascii_line_03 = ' ³ ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_04 = ' ù ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_05 = ' ú ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_06 = ' ~Û~`²`° ~Û~`²`° ~ÛÛÛÛÛÛÛ~`²`° ~Û~`²`° ~ÛÛ~`²`° ³';
ascii_line_07 = ' ~Û~`²`° ~ÛÛÛÛ~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_08 = ' ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_09 = ' ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_10 = ' ú ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_11 = ' ù ~Û~`²`° ~ÛÛÛÛÛÛÛÛ~`²`° ~Û~`²`° ~ÛÛÛÛÛÛÛÛÛÛ~`²`° ³';
ascii_line_12 = ' À-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄ-Äùú úù-ÄÄÄÄ-Ù';
ascii_line_13 = ' .:: ~THE ULTiMATE FM-TRACKiNG TOOL~ ::. ';
ascii_line_14 = ' Ú-Ä--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-¿';
ascii_line_15 = ' ³ `code:` ~ÄÂÄ ÄÄ~ ù';
ascii_line_16 = ' ³ ~subz3ro/Altair~ ~/´DLiB³R/´CK3R ³³ G3~ ú';
ascii_line_17 = ' ³ `additional ideas:` ~³ ³ ÄÄ~ ';
ascii_line_18 = ' ³ ~Malfunction/Altair~ ~'+at2ver+'~ ';
ascii_line_19 = ' ³ ~Diode Millimpere~ ú';
ascii_line_20 = ' ³ `special thanks:` ú';
ascii_line_21 = ' ³ ~encore~ MODiFiED TO SUPPORT OPT3LPT ³';
ascii_line_22 = ' ³ ~Maan M. Hamze~ github.com/pdewacht/adlipt ³';
ascii_line_23 = ' À-ÄÄÄÄÄÄÄÄÄÄ--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-Ù';
procedure C3WriteLn(str: String; atr1,atr2,atr3: Byte);
{$ELSE}
const
ascii_line_01 = 'Ú-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ--ùú úù-¿';
ascii_line_02 = '³ ~Û~`²`° ~Û~`²`° ~ÛÛÛÛÛÛÛÛÛ~`²`° ~ÛÛÛÛÛÛ~`²`° ³';
ascii_line_03 = '³ ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_04 = 'ù ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_05 = 'ú ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_06 = ' ~Û~`²`° ~Û~`²`° ~ÛÛÛÛÛÛÛ~`²`° ~Û~`²`° ~ÛÛ~`²`° ³';
ascii_line_07 = ' ~Û~`²`° ~ÛÛÛÛ~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_08 = ' ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_09 = ' ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_10 = 'ú ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ~Û~`²`° ³';
ascii_line_11 = 'ù ~Û~`²`° ~ÛÛÛÛÛÛÛÛ~`²`° ~Û~`²`° ~ÛÛÛÛÛÛÛÛÛÛ~`²`° ³';
ascii_line_12 = 'À-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄ-Äùú úù-ÄÄÄÄ-Ù';
ascii_line_13 = ' .:: ~THE ULTiMATE FM-TRACKiNG TOOL~ ::. ';
ascii_line_14 = 'Ú-Ä--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-¿';
ascii_line_15 = '³ `code:` ~ÄÂÄ ÄÄ~ ù';
ascii_line_16 = '³ ~subz3ro/Altair~ ~/´DLiB³R/´CK3R ³³ SDL~ ú';
ascii_line_17 = '³ `additional ideas:` ~³ ³ ÄÄ~ ';
ascii_line_18 = '³ ~Malfunction/Altair~ ~'+at2ver+'~ ';
ascii_line_19 = '³ ~Diode Milliampere~';
ascii_line_20 = '³ `special thanks:` ù';
ascii_line_21 = '³ ~Dmitry Smagin~ ú';
ascii_line_22 = '³ ~Windfisch~ HOMEPAGE www.adlibtracker.net ³';
ascii_line_23 = '³ ~insane/Altair~ EMAiL [email protected] ³';
ascii_line_24 = 'À-ÄÄÄÄÄÄÄÄÄÄ--ùú úù-ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-Ù';
procedure C3WriteLn(posX,PosY: Byte; str: String; atr1,atr2,atr3: Byte);
{$ENDIF}
const
help_data: array[1..HELP_LINES] of String[128] = (
'@topic:general',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `GENERAL KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~F1~ Help',
'~F2 (^S)~ Save file',
'~F3 (^L)~ Load file',
'~F4 (^A)~ Toggle Nuke''m dialog',
'~F5~ Play',
'~F6~ Pause',
'~F7~ Stop',
'~F8~ Play song from current pattern or order',
'~F9~ Play current pattern or order only',
'~[Ctrl] F8~ @F8 from current line ¿ ',
'~[Ctrl] F9~ @F9 from current line à (Pattern Editor)',
'~[Alt] F6~ Single-play pattern Ù (~Shift~ toggles trace)',
'~[Alt] F5~ @F5 ¿',
'@input:alt_f8',
'~[Alt] F9~ @F9 Ù',
'~[Shift] F2~ Quick Save',
'~[Shift] F3~ Quick Load',
'@input:shift_f5',
'~[Shift] F6~ Toggle Debug mode from position at cursor',
'@input:shift_f8',
'@input:shift_f9',
'~[Shift] Space~ Toggle MidiBoard mode ON/OFF',
'~^Space~ Toggle Note Recorder mode ON/OFF',
'~[Ctrl] Home,End~ Skip to previous/next pattern while Tracing',
'~+,-~ Same as above; play pattern from start',
'',
'@topic:note_recorder',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
'³ `WHEN iN NOTE RECORDER MODE` ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ ~[Ctrl] ,'#26'~ Select group of tracks for recording ³',
'³ ~[Alt] Q~ Quick reset last selected group of tracks ³',
'³ ~Enter~ Start recording from current position ~(*)~ ³',
'³ ~Space~ `Toggle` using custom instrument for all tracks ¿ ³@@spec_attr:01@@',
'³ ~[Alt] Space~ `Toggle` using present instruments in tracks ö ref. ³@@spec_attr:02@@',
'³ ~MBoard keys~ Write notes to corresponding tracks ø ~(*)~ ³',
'³ ~F8,F9~ Toggle pattern repeat OFF/ON Ù ³',
'³ ~Backspace~ Clear note/instrument sequence in tracks ³',
'³ ~^Backspace~ Clear complete note/instrument columns ³',
'³ ~,~ Rewind/Fast-Forward while recording ³',
'³ ~[Shift] ,~ Increase/Decrease row correction for writing notes ³',
'³ ~[Shift] F6~ Continue in Debug mode from position at cursor ³',
'³ ~F7~ Stop recording and reset starting position; ³',
'³ current group of tracks can be modified ³',
'³ ~[Alt] 1..9,0~ Toggle track channel ON/OFF (~Shift~ toggles 1`X`) ³',
'³ ~[Alt] R~ Reset flags on all tracks ³',
'³ ~*~ Reverse ON/OFF on all tracks ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ In case you need non-continuos track selection, you can choose ³',
'³ from already selected group a subset of tracks where notes will be ³',
'³ written by manipulating track ON/OFF flags. ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ',
'',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
'³ `iF SONG iS PLAYED WiTH TRACE, iT CAN BE REMOVED WHiLE...` ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ ~Enter~ Playback is paused and cursor stays on position ³',
'³ ~Esc~ Cursor jumps to last position and playback continues ³',
'³ ~[Shift] Esc~ Cursor stays on position and playback continues ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ',
'',
'~^Enter~ Play next pattern according to order',
'~[Ctrl] ()~ Rewind current pattern (with Trace)',
'~[Ctrl] '#26' ()~ Fast-Forward (with Trace)',
'~[Ctrl][Alt] <hold down>~ Temporarily show Debug Info window',
'~^B~ Toggle Message Board window',
'~^D~ Toggle Debug Info window',
'~^Q~ Toggle Instrument Macro Editor window',
'~^G~ Toggle Arpeggio/Vibrato Macro Editor window',
'~^M~ Toggle Macro Browser window',
'~^F~ Toggle Song Variables window',
'~^H~ Toggle Replace window',
'~^I~ Toggle Instrument Control panel',
'~^E~ Toggle Instrument Editor window',
'~^O~ Toggle Octave Control panel',
'~^P~ Toggle Pattern List window',
'~^R~ Toggle Remap Instrument window',
'~^T~ Toggle Transpose window',
'~^X~ Toggle Rearrange Tracks window',
'~^1..^8~ Quick-set octave',
'~[Alt]{Shift} +,- {,}~ Adjust volume level of sound output',
'~[Alt] C~ Copy object to clipboard (with selection)',
'~[Alt] P~ Paste object from clipboard',
'~[Alt] M~ Toggle marking lines ON/OFF',
'~[Alt] L~ Toggle Line Marking Setup window',
'~[Alt] 1..9,0~ Toggle track channel ON/OFF (~Shift~ toggles 1`X`)',
'~[Alt] S~ Set all OFF except current track (solo)',
'~[Alt] R~ Reset flags on all tracks',
'~*~ Reverse ON/OFF on all tracks',
'~F10~ Quit program',
'~F11~ Toggle typing mode in Pattern Editor (`AT`'#26'`FT`'#26'`ST`)',
'~F12~ Toggle `line feed` in Pattern Editor',
'~[Shift] F12~ Toggle `jump to marked line` in Pattern Editor',
{$IFDEF GO32V2}
'~[Ctrl][Tab] [...] (*)~ Scroll screen content (if necessary)',
'',
'~(*) ,,,'#26',PgUp,PgDown,Home,End~',
{$ELSE}
'~[Ctrl][Tab] [...] (*)~ Scroll Volume Analyzer section (if necessary)',
'',
'~(*) ,,PgUp,PgDown~',
'',
'@topic:wav_recorder',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `WAV RECORDER KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'',
'~[Alt|Ctrl]{Shift} F11~ Toggle WAV recording ON',
'~[Alt|Ctrl]{Shift} F12~ Toggle WAV recording OFF',
'',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
'³ `FUNCTiONALiTY OF ALTERNATiVE KEYS` ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ ~Alt~ Toggle normal recording mode ³',
'³ ~Ctrl~ Toggle ''per track'' recording mode ³',
'³ ~Shift~ Toggle Fade in / Fade out sound processing ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ POSSiBLE COMBiNATiONS: Alt,Ctrl,Alt+Shift,Ctrl+Shift ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ',
'',
'If ''per track'' recording mode is activated and song playback is stopped,',
'you can exclude/include corresponding tracks from/to being recorded',
'with ordinary track selection procedure:',
'',
'~[Alt] 1..9,0~ Toggle track channel ON/OFF (~Shift~ toggles 1`X`)',
'~[Alt] S~ Set all OFF except current track (solo)',
'~[Alt] R~ Reset flags on all tracks',
{$ENDIF}
'',
'@topic:pattern_order',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `PATTERN ORDER KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26'~ Cursor navigation',
'~PgUp,PgDn~ Move up/down 32 patterns',
'~Home,End~ Move to the top/end of pattern order',
'~Tab,[Shift] Tab~ Move to next/previous entry',
'~Insert~ Insert entry',
'~Delete~ Delete entry',
'~Backspace~ Clear entry',
'~^Space~ Enter skip mark',
'~^C~ Copy entry to clipboard',
'~^V~ Paste entry from clipboard',
'~+,-~ Adjust entry',
'~^F2~ Save module in tiny format',
'~Enter~ Switch to Pattern Editor',
'',
'ORDER ENTRiES: 0-7F',
' 80-FF = jump to pattern order 0-7F',
' syntax: order_number[hex](+80h); e.g. "9A" jumps to order 1A',
'',
'@topic:pattern_editor',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `PATTERN EDiTOR KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26'~ Cursor navigation',
'~PgUp,PgDn~ Move up/down 16 lines',
'~Home,End~ Move to the top/end of current pattern',
'~Tab,[Shift] Tab~ Move to next/previous track',
'~[Shift] PgDn,PgUp (+,-)~ Move to next/previous pattern',
'~[Shift] Home,End~ Move fwd./bckwd. to the first/last pattern',
'~^Home,^End~ Move to the end/top of previous/next pattern',
'~Space~ Advance to next row',
'~^PgUp,^PgDn~ Transpose note or block halftone up/down',
'~Backspace~ Remove note or clear attributes',
'~Insert~ Insert new line (within track only)',
'~Delete~ Delete line (within track only)',
'~[Shift] Insert~ Insert new line',
'~[Shift] Delete~ Delete line',
'~[Shift] Enter~ Toggle fixed and regular note',
'~^K~ Insert Key-Off',
'~^C~ Copy object at cursor to clipboard',
'~^V~ Paste object from clipboard',
'~[Alt][Shift] P~ Paste object from clipboard to more patterns',
'~^Z~ Undo last operation (if possible)',
'~{Ctrl} "[","]"~ Change current instrument',
'~[Alt] F2~ Save current pattern to file',
'~^F2~ Save module in tiny format',
'~[Shift] F3~ Quick load recent pattern data',
'~Enter~ Switch to Pattern Order',
'',
'NOTE SYSTEM: C,C#,D,D#,E,F,F#,G,G#,A,A#,B(H)',
'VALiD NOTE ENTRiES: C,C-,C#,C1,C-1,C#1...',
'',
'@topic:block_operations',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
'³ `BLOCK OPERATiONS iN PATTERN EDiTOR` ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ Starting to mark a block: ~[Shift] ,,,'#26'~ ³',
'³ When at least one row in one track is marked, you can continue ³',
'³ marking also with ~PgUp,PgDn,Home,End~ (~Shift~ is still held down!) ³',
'³ Quick mark: ~[Alt] Q~ (1x-2x-3x) track Ä pattern Ä discard ³',
'³ Toggle last marked block: ~[Alt] B~ ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ ~^B~ Blank block (Insert blank block to pattern) ³',
'³ ~^C~ Copy block (Copy block to clipboard) ³',
'³ ~^D~ Delete block (Remove block from pattern) ³',
'³ ~^N~ Nuke block (Clear block contents) ³',
'³ ~^V~ Paste block (Paste block from clipboard to pattern) ~(*)~ ³',
'³ ~^X~ Cut block (Combine both Copy and Delete operation) ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ `(*) PASTE BLOCK OPERATiON VARiANTS` ³',
'³ ³',
'³ "Paste block" operation has three other functional variants ³',
'³ with different key shortcuts for activation: ³',
'³ 1) ~[Alt] V~ toggles "Mix block" operation, when block data ³',
'³ from clipboard is applied without overwriting existing data; ³',
'³ 2) ~[Shift] ^V~ toggles "Selective paste block" operation, ³',
'³ when only block data from clipboard corresponding to current ³',
'³ cursor position is being applied (i.e. note, instrument, ³',
'³ 1st effect or 2nd effect); ³',
'³ 3) ~[Alt][Shift] V~ toggles "Flipped paste block" operation, ³',
'³ when block data from clipboard is applied vertically flipped. ³',
'³ ³',
'³ `MANiPULATiON WiTH FX VOLUME iNFORMATiON` ³',
'³ ³',
'³ When there is block marked, which contains some effect ³',
'³ commands carrying volume information, you can increase/decrease ³',
'³ their values with ~+~/~-~ keys. ³',
'³ Effect commands are processed with following priority: ³',
'³ 1) Set instrument volume (~Cxx~), ³',
'³ Force instrument volume (~=xx~) ³',
'³ 2) Set modulator volume (~9xx~) ³',
'³ 3) Set carrier volume (~Ixx~) ³',
'³ 4) Set global volume (~%xx~) ³',
'³ If effect command with higher priority has been processed, ³',
'³ all remaining effect commands with lower priority are skipped. ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ',
'',
'@topic:pattern_list',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `PATTERN LiST WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,~ Cursor navigation',
'~PgUp,PgDn~ Move up/down 20 patterns',
'~Home,End~ Move to the top/end of pattern list',
'~Space~ Mark/Unmark pattern',
'~^Space~ Unmark all marked patterns',
'~[Shift] ^Space~ Reverse marks on all patterns',
'~[Alt] C (^C)~ Copy pattern to clipboard',
'~[Alt] P (^V)~ Paste pattern from clipboard',
'~[Shift] ^V~ Paste pattern data from clipboard',
'~[Alt] V~ Paste pattern name(s) from clipboard',
'~^N~ Nuke current pattern',
'~[Shift] ^N~ Nuke all marked patterns',
'~^W~ Swap marked patterns',
'~[Shift] ^W~ Swap marked patterns w/o names',
'~[Shift] Insert~ Insert new pattern',
'~[Shift] Delete~ Delete current pattern',
'~Enter~ Rename pattern / Multiple paste',
'~[Shift] F3~ Quick load recent pattern data',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:instrument_control',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `iNSTRUMENT CONTROL PANEL KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,~ Cursor navigation',
'~PgUp,PgDn~ Move up/down 16 instruments',
'~Home,End~ Move to the top/end of instrument list',
'~Space~ Mark/Unmark instrument',
'~Enter~ Rename instrument',
'~^C~ Copy instrument to clipboard',
'~[Shift] ^C~ Copy instrument also with macro-definitions',
'~^V~ Paste instrument(s) from clipboard',
'~[Shift] ^V~ Paste instrument data from clipboard',
'~[Alt] V~ Paste instrument name(s) from clipboard',
'~^W~ Swap marked instruments',
'~[Shift] ^W~ Swap marked instruments w/o names',
'~Tab~ Toggle Instrument Editor window',
'~[Shift] Tab~ Toggle Macro Editor window',
'~[Shift] O~ Toggle operator mode / ',
'~[Shift] M,B,S,T,C,H~ Toggle `m`elodic and percussion (`B`D,`S`D,`T`T,T`C`,`H`H)',
'~[Shift] F2~ Save instrument w/ fm-register macro to file',
'~[Alt] F2~ Save instrument bank to file',
'~^F2~ Save instrument bank w/ all macros to file',
'~[Shift] F3~ Quick load recent instrument data',
'~MBoard keys <hold down>~ Preview instrument',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:instrument_editor',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `iNSTRUMENT EDiTOR WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~[Alt] <section hotkey>~ Jump to section',
'~Tab~ Jump to next setting',
'~[Shift] Tab~ Jump to previous setting',
'~PgUp,PgDn (+,-)~ Adjust value',
'~Space~ Select item',
'~^Space~ `(opt.)` Toggle ADSR preview ON/OFF',
'~[Ctrl] "[","]"~ Change current instrument',
'~[Ctrl][Shift] "[","]"~ Change macro speed',
'~[Alt]{Shift} 1..4,0~ Set operators for instrument preview ~(*)~',
'~Enter~ Toggle carrier/modulator/ slot settings',
'~[Shift] O~ Toggle operator mode / ',
'~[Shift] M,B,S,T,C,H~ Toggle `m`elodic and percussion (`B`D,`S`D,`T`T,T`C`,`H`H)',
'~[Shift] F2~ Save instrument w/ fm-register macro to file',
'~[Shift] Enter~ Copy values from carrier/modulator slot',
'~MBoard keys <hold down>~ Preview instrument',
'~Esc~ Return to Instrument Control panel',
'',
'~(*) [Alt] 1..4~ Set solo operator',
' ~[Alt][Shift] 1..4~ Toggle operator ON/OFF',
' ~[Alt] 0~ Reset',
'',
'@topic:macro_editor',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `iNSTRUMENT MACRO EDiTOR WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~PgUp,PgDown~ Move up/down 16 lines',
'~Tab (Enter)~ Jump to next field in order',
'~[Shift] Tab~ Jump to previous field in order',
'~[Shift] ,~ Synchronous navigation within tables',
'~[Shift] Home,End~ Move to the start/end of current line in table',
'~[Ctrl] ,'#26'~ Switch between macro tables',
'~[Ctrl][Shift] ,'#26'~ Navigate to start/end of macro table',
'~^PgUp,^PgDown~ Change current arpeggio/vibrato table',
'~[Ctrl] "[","]"~ Change current instrument',
'~[Ctrl][Shift] "[","]"~ Change macro speed',
'~[Alt]{Shift} 1..4,0~ Set operators for instrument preview ~(*)~',
'~[Alt] ^C~ Copy values from carrier column',
'~[Alt] ^M~ Copy values from modulator column',
'~^C~ Copy line in table (whole table respectively)',
'~[Shift] ^C~ Copy column in table',
'~^V~ Paste object from clipboard',
'~^Enter~ Paste data from instrument registers',
'~[Shift] Enter~ Paste data to instrument registers',
'~[Shift] ^Enter~ Paste data from instrument registers w/ selection',
'~Backspace~ Clear current item in table',
'~[Shift] Backspace~ Clear line in table',
'~+,-~ Adjust value at cursor / current item in table',
'~^Home,^End~ Quick-adjust table length',
'~[Shift] ^Home,^End~ Quick-adjust loop begin position',
'~[Shift] ^PgUp,^PgDown~ Quick-adjust loop length',
'~Insert~ Insert new line in table',
'~Delete~ Delete line in table',
'~^E~ Toggle envelope restart ON/OFF ¿',
'~^N~ Toggle note retrigger ON/OFF ö',
'~^Z~ Toggle ZERO frequency ON/OFF ö',
'~[Alt] ^E,^N,^Z~ Reset all alike flags in table ö FM-register',
'~^Backspace~ Toggle corresponding column ON/OFF ø table',
'~[Alt] S~ Set all OFF except current column ö',
'~[Alt] R~ Reset flags on all columns ö',
'~*~ Reverse ON/OFF on all columns Ù',
'~\~ Toggle current item (switch types only)',
'~Space~ Toggle macro-preview mode',
'~^Space~ Toggle Key-Off loop within macro-preview mode',
'~^F2~ Save instrument bank w/ all macros to file',
'~Esc~ Leave Instrument Macro Editor window',
'',
'~(*) [Alt] 1..4~ Set solo operator',
' ~[Alt][Shift] 1..4~ Toggle operator ON/OFF',
' ~[Alt] 0~ Reset',
'',
'@topic:macro_editor_(av)',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `APREGGiO/ViBRATO MACRO EDiTOR WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~PgUp,PgDown~ Move up/down 16 lines',
'~Tab (Enter)~ Jump to next field in order',
'~[Shift] Tab~ Jump to previous field in order',
'~[Shift] ,~ Synchronous navigation within tables',
'~[Ctrl] ,'#26'~ Switch between macro tables',
'~[Ctrl][Shift] ,'#26'~ Navigate to start/end of macro table',
'~^PgUp,^PgDown~ Change current arpeggio/vibrato table',
'~[Ctrl] "[","]"~ Change current instrument',
'~[Ctrl][Shift] "[","]"~ Change macro speed',
'~[Alt]{Shift} 1..4,0~ Set operators for instrument preview ~(*)~',
'~^C~ Copy line in table (whole table respectively)',
'~[Shift] ^C~ Copy column in table',
'~^V~ Paste object from clipboard',
'~Backspace~ Clear current item in table',
'~[Shift] Backspace~ Clear line in table',
'~+,-~ Adjust value at cursor / current item in table',
'~^Home,^End~ Quick-adjust table length',
'~[Shift] ^Home,^End~ Quick-adjust loop begin position',
'~[Shift] ^PgUp,^PgDown~ Quick-adjust loop length',
'~Space~ Toggle macro-preview mode',
'~^Space~ Toggle Key-Off loop within macro-preview mode',
'~[Shift] Esc~ Apply table indexes to current instrument',
'~Esc~ Leave Arpeggio/Vibrato Macro Editor window',
'',
'~(*) [Alt] 1..4~ Set solo operator',
' ~[Alt][Shift] 1..4~ Toggle operator ON/OFF',
' ~[Alt] 0~ Reset',
'',
'@topic:macro_browser',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `iNSTRUMENT MACRO BROWSER KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~[Shift] ,~ Move up/down in macro table',
'~[Shift] ,'#26'~ Move left/right in macro table',
'~[Shift] PgUp,PgDown~ Move page up/down in macro table',
'~[Shift] Home,End~ Move to the start/end of macro table',
'~[Ctrl] Home,End~ Move to the start/end of line in macro table',
'~Enter~ Load selected macro data',
'~^Enter~ `(opt.)` Load all macro data from bank',
'~[Ctrl][Shift] "[","]"~ Change macro speed',
'~MBoard keys <hold down>~ Preview instrument with selected macro data',
'~Tab~ `(opt.)` Switch to Arpeggio/Vibrato Macro Browser window',
'~Esc~ Leave Instrument Macro Browser window',
'',
'@topic:macro_browser_av',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `ARPEGGiO/ViBRATO MACRO BROWSER KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,PgUp,PgDown,~',
'~Home,End~ Cursor navigation',
'~[Shift] ,'#26'~ Move left/right in arpeggio table ¿',
'~[Shift] PgUp,PgDown~ Move page left/right in arpeggio table ö',
'~[Ctrl] ,'#26'~ Move left/right in vibrato table ö refer to',
'~^PgUp,^PgDown~ Move page left/right in vibrato table ø ~(*)~',
'~[Shift]{Alt} Space~ Toggle arpeggio table selection ~(**)~ ö',
'~[Ctrl] {Alt} Space~ Toggle vibrato table selection ~(**)~ Ù',
'~[Shift] Home,End~ Navigate to start/end of arpeggio table',
'~^Home,^End~ Navigate to start/end of vibrato table',
'~[Ctrl] "[","]"~ Change current instrument',
'~[Ctrl][Shift] "[","]"~ Change macro speed',
'~MBoard keys <hold down>~ Preview instrument with selected macro data',
'~Enter~ Load selected macro data',
'~^Enter~ `(opt.)` Load all macro data from bank',
'~Esc~ Leave Arpeggio/Vibrato Macro Browser window',
'',
'~(*)~ Key combination with ~Ctrl+Shift~ applies action to both tables',
'~(**)~ ~Alt~ key invokes no arpeggio resp. vibrato table (index value reset)',
'',
'@topic:debug_info',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `DEBUG iNFO WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,PgUp,PgDown,~',
'~Home,End~ Change current track',
'~Tab~ Toggle details',
'~Backspace~ Toggle pattern repeat',
'~Space~ Enter Debug mode / Proceed step',
'~^Space~ Exit Debug mode',
'~[Ctrl] Home,End~ Skip to previous/next pattern',
'~+,-~ Same as above; play pattern from start',
'~^Enter~ Play next pattern according to order',
'~[Ctrl] ,'#26'~ Rewind/Fast-Forward current pattern',
'~[Alt] 1..9,0~ Toggle track channel ON/OFF (~Shift~ toggles 1`X`)',
'~[Alt] S~ Set all OFF except current track (solo)',
'~[Alt] R~ Reset flags on all tracks',
'~*~ Reverse ON/OFF on all tracks',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:remap_dialog',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `REMAP iNSTRUMENT WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~PgUp,PgDown~ Move up/down 16 instruments',
'~Tab~ Jump to next selection',
'~[Shift] Tab~ Jump to previous selection',
'~MBoard keys <hold down>~ Preview instrument',
'~Enter~ Remap',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:rearrange_dialog',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `REARRANGE TRACKS WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~Tab~ Jump to next selection',
'~[Shift] Tab~ Jump to previous selection',
'~^PgUp,^PgDown~ Shift track at cursor up/down in the track list',
'~[Shift] ^PgUp,^PgDown~ Rotate track list from cursor upside/downside',
'~Enter~ Rearrange',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:replace_dialog',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `REPLACE WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',Home,End~ Cursor navigation',
'~Tab~ Jump to next selection',
'~[Shift] Tab~ Jump to previous selection',
'~^K~ Insert Key-Off in note column',
'~^N~ Mark "new" field to clear found item',
'~^W~ Swap "to find" and "replace" mask content',
'~Delete,Backspace~ Delete current/previous character',
'~^Backspace~ Delete "to find" or "replace" mask content',
'~[Shift] ^Backspace~ Delete content of both masks',
'~Enter~ Replace',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:song_variables',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `SONG VARiABLES WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26'~ Cursor navigation',
'~Tab (Enter)~ Jump to next variable field',
'~[Shift] Tab~ Jump to previous variable field',
'~Space~ Select item',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:file_browser',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `FiLE BROWSER KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26'~',
'~PgUp,PgDown,Home,End~ Cursor navigation',
{$IFDEF UNIX}
'~/~ Navigate to root directory',
{$ELSE}
'~\~ Navigate to drive root',
{$ENDIF}
'~Backspace~ Navigate to parent directory',
'~[Shift] Backspace~ Navigate to program home directory',
'~MBoard keys <hold down>~ Preview instrument (instrument files only)',
'~Enter~ Choose file under cursor / read instrument bank',
'~Esc~ Leave without choosing file',
'',
'@topic:message_board',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `MESSAGE BOARD WiNDOW KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,,,'#26',^PgUp,^PgDown,~',
'~Home,End,^Home,^End~ Cursor navigation',
'~PgUp,PgDown~ Move backwards/forwards over text',
'~[Ctrl] ,'#26'~ Move word left/right',
'~Backspace,Delete~ Delete character left/right',
'~^Backspace,^T~ Delete word left/right',
'~^K~ Delete characters to end',
'~^Y~ Delete current line',
'~Tab~ Indent current line',
'~^Space~ Insert row for text at cursor',
'~[Shift] ^Backspace~ Delete row for text at cursor',
'~Insert~ Toggle input and overwrite mode',
'~Enter~ Wrap line of text',
'~Esc~ Return to Pattern Editor or Pattern Order',
'',
'@topic:input_field',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `iNPUT FiELD KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~,'#26',Home,End~ Cursor navigation',
'~[Ctrl] ,'#26'~ Move word left/right',
'~Backspace,Delete~ Delete character left/right',
'~^Backspace,^T~ Delete word left/right',
'~^K~ Delete characters to end',
'~^Y~ Delete string',
'~Insert~ Toggle input and overwrite mode',
'',
'@topic:midiboard',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `MiDiBOARD KEY REFERENCE` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'',
' C# D# F# G# A# C# D# F# G# A# C# D#',
'',
' ÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛ',
' ÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛ',
' ÞÛÛ ~S~ÞÛ ~D~ÞÛÛÞÛÛ ~G~ÞÛ ~H~ÞÛ ~J~ÞÛÛÞÛÛ ~2~ÞÛ ~3~ÞÛÛÞÛÛ ~5~ÞÛ ~6~ÞÛ ~7~ÞÛÛÞÛÛ ~9~ÞÛ ~0~ÞÛÛ',
' ÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛ',
' ÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛ ÞÛÛÞÛÛ ÞÛ ÞÛÛ',
' ÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛ',
' ÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛ',
' ÞÝ~Z~ÞÞÝ~X~ÞÞÝ~C~ÞÞÝ~V~ÞÞÝ~B~ÞÞÝ~N~ÞÞÝ~M~ÞÞÝ~Q~ÞÞÝ~W~ÞÞÝ~E~ÞÞÝ~R~ÞÞÝ~T~ÞÞÝ~Y~ÞÞÝ~U~ÞÞÝ~I~ÞÞÝ~O~ÞÞÝ~P~Þ',
' ÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛ',
' ÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛÞÛÛÛ',
'',
' C D E F G A B C D E F G A B C D E',
'',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
'³ `WHiLE TRACKER iS iN MiDiBOARD MODE` ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´',
'³ ~MBoard key~ copies note in note field, plays it, and advances song ³',
'³ to next row. If used with ~Left-Shift~ key and line marking toggled ON, ³',
'³ it advances song to next highlighted row. ³',
'³ If used with ~Right-Shift~ key, it makes a fixed note. ³',
'³ ~Space~ plays row and advances song by one row. ³',
'³ ~@@` inserts Key-Off, releases playing note and advances to next row. ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ',
'',
'@topic:instrument_registers',
'ÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍ',
' º `iNSTRUMENT REGiSTERS` º',
'ÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ',
'~Attack rate~',
'Indicates how fast the sound volume goes to maximum.',
'1=slow, 15=fast. 0 means no attack phase.',
'',
'~Decay rate~',
'Indicates how fast the sound goes from maximum level to sustain level.',
'1=slow, 15=fast. 0 means no decay phase.',
'',
'~Sustain level~',
'Indicates the sustain level.',
'1=loudest, 15=softest. 0 means no sustain phase.',
'',
'~Release rate~',
'Indicates how fast the sound goes from sustain level to zero level.',
'1=slow, 15=fast. 0 means no release phase.',
'',
'~Output level~',
'Ranges from 0 to 63, indicates the attenuation according to the',
'envelope generator output. In Additive synthesis, varying',
'the output level of any operator varies the volume of its corresponding',
'channel. In FM synthesis, varying the output level of carrier varies',
'the volume of its corresponding channel, but varying the output of',
'the modulator will change the frequency spectrum produced by the carrier.',
'',
'~Waveform select~',
'Specifies the output waveform type.',
'The first is closest to pure sine wave, the last is most distorted.',
'',
'`[0] SiNE`',
'',
' ',
' ³',
' ³ __ __',
' ³ / \ / \',
' ³ / \ / \',
' ÄÅÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄ',
' ³ \ / \ /',
' ³ \ / \ /',
' ³ ',
' ³ 1/2 1 3/2 2 pi',
'',
'',
'`[1] HALF-SiNE`',
'',
' ',
' ³',
' ³ __ __',
' ³ / \ / \',
' ³ / \ / \',
' ÄÅÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄ',
' ³',
' ³ 1/2 1 3/2 2 pi',
' ³',
' ³',
'',
'',
'`[2] ABS-SiNE`',
'',
' ',
' ³',
' ³ __ __ __ __',
' ³ / \ / \ / \ / \',
' ³ / \ / \ / \ / \',
' ÄÅÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄ',
' ³',
' ³ 1/2 1 3/2 2 pi',
' ³',
' ³',
'',
'',
'`[3] PULSE-SiNE`',
'',
' ',
' ³',
' ³ _ _ _ _',
' ³ / | / | / | / |',
' ³/ | / | / | / |',
' ÄÅÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄ',
' ³',
' ³ 1/4 1/2 3/4 1 5/4 3/2 7/4 2 pi',
' ³',
' ³',
'',
'',
'`[4] SiNE, EVEN PERiODS ONLY (EPO)`',
'',
' ',
' ³',
' ³',
' ³ /\ /\',
' ³/ \ / \',
' ÄÅÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄ',
' ³ \ / \ /',
' ³ \_/ \_/',
' ³',
' ³ 1/4 1/2 3/4 1 5/4 3/2 7/4 2 pi',
'',
'',
'`[5] ABS-SiNE, EVEN PERiODS ONLY (EPO)`',
'',
' ',
' ³',
' ³',
' ³ /\ /\ /\ /\',
' ³/ \ / \ / \ / \',
' ÄÅÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄ',
' ³',
' ³ 1/4 1/2 3/4 1 5/4 3/2 7/4 2 pi',
' ³',
' ³',
'',
'',
'`[6] SQUARE`',
'',
' ',
' ³',
' ³',
' Ã-----------¿ Ú-----------¿',
' ñ ñ ñ ñ',
' ÄÅÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄ',
' ³ ñ ñ ñ ñ',
' ³ À-----------Ù À-----------Ù',
' ³',
' ³ 1/2 1 3/2 2 pi',
'',
'',
'`[7] DERiVED SQUARE`',
'',
' ',
' ³',
' ³',
' ñ\__ ñ\__',
' ñ ÄÄÄ__ ñ ÄÄ__',
' ÄÅÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄ',
' ³ ÄÄÄ___ ñ ÄÄ____ ñ',
' ³ \ñ \ñ',
' ³',
' ³ 1/2 1 3/2 2 pi',
'',
'',
'~Key scaling level (KSL)~',
'When set, makes the sound softer at higher frequencies.',
'With musical instruments, volume decreases as pitch increases.',
'Level key scaling values are used to simulate this effect.',
'If any (not zero), the diminishing factor can be 1.5 dB/octave,',
'3.0 dB/octave, or 6.0 dB/octave.',
'',
'~Panning~',
'Gives you ability of controlling output, going to left or right channel,',
'standing in the middle respectively.',
'The parameter corresponds either with carrier and modulator, therefore',
'it is listed only once (within the carrier slot).',
'',
'~Fine-tune~',
'This is not a hardware parameter.',
'Ranges from -127 to 127, it indicates the number of frequency units',
'shifted up or down for any note playing with the corresponding instrument.',
'The parameter corresponds either with carrier and modulator, therefore',
'it is listed only once (within the carrier slot).',
'',
'~Feedback strength~',
'Ranges from 0 to 7, it indicates the modulation depth',
'for the modulator slot FM feedback.',
'',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÒÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄÂÄÄÄÄÄ¿',
'³ `FEEDBACK` º `[0]` ³ `[1]` ³ `[2]` ³ `[3]` ³ `[4]` ³ `[5]` ³ `[6]` ³ `[7]` ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄ×ÄÄÄÄÄÅÄÄÄÄÄÅÄÄÄÄÄÅÄÄÄÄÄÅÄÄÄÄÄÅÄÄÄÄÄÅÄÄÄÄÄÅÄÄÄÄÄ´',
'³ `MODULATiON` º 0 ³1/16 ³ 1/8 ³ 1/4 ³ 1/2 ³ 1 ³ 2 ³ 4 ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÐÄÄÄÄÄÁÄÄÄÄÄÁÄÄÄÄÄÁÄÄÄÄÄÁÄÄÄÄÄÁÄÄÄÄÄÁÄÄÄÄÄÁÄÄÄÄÄÙ',
'',
'The parameter corresponds either with carrier and modulator, therefore',
'it is listed only once (within the carrier slot).',
'',
'~Connection type~',
'Frequency modulation means that the modulator slot modulates the carrier.',
'Additive synthesis means that both slots produce sound on their own.',
'',
'`[FM] FREQUENCY MODULATiON`',
'',
'',
' ÚÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ³ ³',
' ÉÍÍÍÍ» ³ ÉÍÍÍÍ»',
' P1 ÄÄ(+)Äĺ MO ÇÄÄÁÄÄ(+)Äĺ CA ÇÄÄ OUT',
' ÈÍÍÍͼ ÈÍÍÍͼ',
' ³',
'',
' P2',
'',
'`[ADDiTiVE SYNTHESiS] AM`',
'',
'',
' ÚÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ³ ³',
' ÉÍÍÍÍ» ³',
' P1 ÄÄ(+)Äĺ MO ÇÄÄÁÄÄÄÄ¿',
' ÈÍÍÍͼ ³',
' ',
' (+)ÄÄ OUT',
' ',
' ÉÍÍÍÍ» ³',
' P2 ÄÄÄÄÄÄÄĺ CA ÇÄÄÄÄÄÄÄÙ',
' ÈÍÍÍͼ',
'',
'The parameter corresponds either with carrier and modulator, therefore',
'it is listed only once (within the carrier slot).',
'This parameter is also very important when making 4-op instruments,',
'because the combination of two instrument connections specifies',
'the connection of the 4-op instrument as shown below:',
'',
'ÚÄÄÄÄÄÄÄÄÄÄÄÄÒÄÄÄÄÂÄÄÄÄÂÄÄÄÄÂÄÄÄÄ¿',
'³ `SLOT` º M1 ³ C1 ³ M2 ³ C2 ³',
'ÃÄÄÄÄÄÄÄÄÄÄÄÄ×ÄÄÄÄÅÄÄÄÄÅÄÄÄÄÅÄÄÄÄ´',
'³ `OPERATOR` º 1 ³ 2 ³ 3 ³ 4 ³',
'ÀÄÄÄÄÄÄÄÄÄÄÄÄÐÄÄÄÄÁÄÄÄÄÁÄÄÄÄÁÄÄÄÄÙ',
'',
'',
'`[FM/FM]`',
'',
' ÚÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ³ ³',
' ÉÍÍÍÍ» ³ ÉÍÍÍÍ» ÉÍÍÍÍ» ÉÍÍÍÍ»',
' P1 ÄÄ(+)Äĺ M1 ÇÄÄÁÄÄ(+)Äĺ C1 ÇÄÄ(+)Äĺ M2 ÇÄÄ(+)Äĺ C2 ÇÄÄ OUT',
' ÈÍÍÍͼ ÈÍÍÍͼ ÈÍÍÍͼ ÈÍÍÍͼ',
' ³ ³ ³',
'',
' P2 P3 P4',
'',
'`[FM/AM]` ~(*)~',
'',
' ÚÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ³ ³',
' ÉÍÍÍÍ» ³ ÉÍÍÍÍ»',
' P1 ÄÄ(+)Äĺ M1 ÇÄÄÁÄÄ(+)Äĺ C1 ÇÄÄÄÄ¿',
' ÈÍÍÍͼ ÈÍÍÍͼ ³',
' ³ ³',
' ',
' P2 (+)ÄÄ OUT',
' ',
' ³',
' ÉÍÍÍÍ» ÉÍÍÍÍ» ³',
' P3 ÄÄÄÄÄÄÄĺ M2 ÇÄÄÄÄÄ(+)Äĺ C2 ÇÄÄÄÄÙ',
' ÈÍÍÍͼ ÈÍÍÍͼ',
' ³',
'',
' P4',
'',
'`[AM/FM]` ~(*)~',
'',
' ÚÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ³ ³',
' ÉÍÍÍÍ» ³',
' P1 ÄÄ(+)Äĺ M1 ÇÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ÈÍÍÍͼ ³',
' ³',
' ³',
' ³',
' ÉÍÍÍÍ» ÉÍÍÍÍ» ÉÍÍÍÍ» ',
' P2 ÄÄÄÄÄÄÄĺ C1 ÇÄÄÄÄÄ(+)Äĺ M2 ÇÄÄ(+)Äĺ C2 ÇÄÄ(+)ÄÄ OUT',
' ÈÍÍÍͼ ÈÍÍÍͼ ÈÍÍÍͼ',
' ³ ³',
'',
' P3 P4',
'',
'`[AM/AM]`',
'',
' ÚÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ³ ³',
' ÉÍÍÍÍ» ³',
' P1 ÄÄ(+)Äĺ M1 ÇÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿',
' ÈÍÍÍͼ ³',
' ³',
' ³',
' ³',
' ÉÍÍÍÍ» ÉÍÍÍÍ» ',
' P2 ÄÄÄÄÄÄÄÄĺ C1 ÇÄÄÄÄÄ(+)Äĺ M2 ÇÄÄ(+)ÄÄ OUT',
' ÈÍÍÍͼ ÈÍÍÍͼ ',
' ³ ³',
' ³',
' P3 ³',
' ÉÍÍÍÍ» ³',
' P4 ÄÄÄÄÄÄÄĺ C2 ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ',
' ÈÍÍÍͼ',
'',
'',
'~(*)~ `REMARK ABOUT CONNECTiONS`',
'Please note, that since order of tracks in the tracker is õ and ô,',
'these non-symmetrical instrument connections are reversed.',
'The preview diagrams in the Instrument Editor window show actual order,',
'but here this information is kept in conformity with the official',
'Yamaha YMF262 data specification to prevent further confusion.',
'',
'',
'~Tremolo (Amplitude modulation)~',
'When set, turns tremolo (volume vibrato) ON for the corresponding slot.',
'The repetition rate is 3.7®, the depth is optional (1dB/4.8dB).',
'',
'~Vibrato~',
'When set, turns frequency vibrato ON for the corresponding slot.',
'The repetition rate is 6.1®, the depth is optional (7%/14%).',
'',
'~Key scale rate (KSR)~',
'When set, makes the sound shorter at higher frequencies.',
'With normal musical instruments, the attack and decay rate becomes faster',
'as the pitch increases. The key scale rate controls simulation of',
'this effect. An offset (rof) is added to the individual attack, decay,',
'and release rates depending on the following formula:',
'',
'actual_rate = (rate 4) + rof',
'',
'The "rof" values for corresponding "rate" value and KSR state are shown',
'in the following table:',
'',
'ÚÄÄÄÄÄÄÄÄÒÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄ¿',
'³ `%rate%` º 0 ³ 1 ³ 2 ³ 3 ³ 4 ³ 5 ³ 6 ³ 7 ³ 8 ³ 9 ³ A ³ B ³ C ³ D ³ E ³ F ³',
'ÆÍÍÍÍÍÍÍÍÎÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍÍØÍÍ͵',
'³ `[OFF]` º 0 ³ 0 ³ 0 ³ 0 ³ 1 ³ 1 ³ 1 ³ 1 ³ 2 ³ 2 ³ 2 ³ 2 ³ 3 ³ 3 ³ 3 ³ 3 ³',
'ÃÄÄÄÄÄÄÄÄ×ÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄÅÄÄÄ´',
'³ `[ON]` º 0 ³ 1 ³ 2 ³ 3 ³ 4 ³ 5 ³ 6 ³ 7 ³ 8 ³ 9 ³ A ³ B ³ C ³ D ³ E ³ F ³',