-
Notifications
You must be signed in to change notification settings - Fork 12
/
IT.ASM
1147 lines (850 loc) · 33.1 KB
/
IT.ASM
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
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Startup Module ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Jumps
.386P
include switch.inc
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Externals ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Segment Object1 BYTE Public 'Data'
Extrn HelpKeyValue:Word, OrderKeyValue:Word
EndS
Segment InfoLine BYTE Public 'Code' USE16
Extrn ShowUsageTime:Byte
EndS
Segment Disk BYTE Public 'Code' USE16
Extrn DiskOptions:Byte
EndS
Segment Screen BYTE Public 'Code'
Extrn CharacterGenerationOffset:Word
Extrn VGAFlags:Byte
EndS
Segment Mouse BYTE Public 'Code'
Extrn MouseCharacterGenerationOffset:Word
EndS
Segment Main DWORD Public 'Code' USE16
Extrn ReleaseTimeSlice:Byte
EndS
Extrn D_InitDisk:Far
Extrn D_UnInitDisk:Far
Extrn D_DisableFileColours:Far
Extrn E_InitEMS:Far
Extrn E_UnInitEMS:Far
Extrn Error_InitHandler:Far
Extrn Error_UnInitHandler:Far
Extrn K_InitKeyBoard:Far
Extrn K_UnInitKeyBoard:Far
Extrn K_InstallKeyboardType:Far
Extrn K_RemoveKeyboardType:Far
Extrn K_InstallDOSHandler:Far
Extrn K_UnInstallDOSHandler:Far
Extrn K_SwapKeyBoard:Far
Extrn O1_AutoDetectList:Far
Extrn O1_ConfirmQuit:Far
Extrn O1_PatternEditList:Far
Extrn O1_CrashRecovery:Far
Extrn O1_KeyboardList:Far
Extrn M_Object1List:Far
Extrn S_InitScreen:Far
Extrn S_ClearScreen:Far
Extrn S_UnInitScreen:Far
Extrn S_SetDirectMode:Far
Extrn S_DrawString:Far
Extrn Music_InitMusic:Far
Extrn Music_UnInitMusic:Far
Extrn Music_SetLimit:Far
Extrn Music_SetSoundCard:Far
Extrn Music_SetDMA:Far
Extrn Music_SetIRQ:Far
Extrn Music_SetMixSpeed:Far
Extrn Music_SetAddress:Far
Extrn Music_ReverseChannels:Far
Extrn Music_PatternStorage:Far
Extrn Music_SetSoundCardDriver:Far
Extrn Music_Stop:Far
Extrn Music_AutoDetectSoundCard:Far
IF NETWORKENABLED
Extrn Network_Shutdown:Far
ENDIF
Extrn PE_InitPatternEdit:Far
Extrn PE_UnInitPatternEdit:Far
Extrn PECheckModified:Far
Extrn D_RestorePreShellDirectory:Far
Extrn D_GetPreShellDirectory:Far
Extrn MMTSR_InstallMMTSR:Far
Extrn MMTSR_UninstallMMTSR:Far
Extrn InitMouse:Far, UnInitMouse:Far
Extrn CmdLineDisableMouse:Far
Extrn InitTimerHandler:Far, UnInitTimerHandler:Far
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Global Quit:Far, Refresh:Far
Global DOSShell:Far, GetEnvironment:Far
Global CrashRecovery:Far
Public IsStartupKeyList
Public GetStartupKeyList
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Segment StartUp BYTE Public 'Code' USE16
Assume CS:StartUp, DS:Nothing, ES:Nothing
CREATENEWLOGFILE EQU 1
include debug.inc
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Variables ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
StackSize = 1000h
No386Msg DB "Sorry, Impulse Tracker requires a 386+ processor to run."
DB 13, 10, "$"
WindowsMsg DB "Microsoft Windows detected.", 13, 10, 10
DB "Due to instabilities in Windows, it is highly recommended that you run", 13, 10
DB "Impulse Tracker in DOS instead.", 13, 10, 10
DB "Press any key to continue..."
DB "$"
PSP DW ?
LoadMMTSR DB 1
Pause DB 0
COMSPECFound DB 0
COMSPEC DD 0
Control DB 0
CommandTail DB 1, 0, 13
FCB1 DB 0, 11 Dup (32), 52 Dup (0)
FCB2 DB 0, 11 Dup (32), 52 Dup (0)
COMSPECString DB "COMSPEC"
DefaultShell DB "C:\COMMAND.COM", 0
EXECData DW 0 ; Inherit same environment block
DW Offset CommandTail, Startup
DW Offset FCB1, Startup
DW Offset FCB2, Startup
ShellMsg DB "Type EXIT to return to Impulse Tracker$"
IF SHOWREGISTERNAME
include wavswitc.inc
include username.inc
ENDIF
Label CmdLineHelp Byte
IF SHOWVERSION
DB "Impulse Tracker 2.14, Copyright (C) 1995-2000 Jeffrey Lim", 13, 10
DB 10
DB " Usage: IT.EXE [Switches]", 13, 10
ELSE
DB "Impulse Tracker, Copyright (C) 1995-2000 Jeffrey Lim", 13, 10
IF SHOWREGISTERNAME
DB "Registered to: "
DB REGISTERNAME
DB 13, 10
ENDIF
ENDIF
DB 10
DB "Switches:", 13, 10
DB " SFilename.Drv Select sound card driver", 13, 10
DB " S#", 9, 9, " Quick select sound card", 13, 10
DB 9, "S0: No sound card", 9, 9, " S9: Pro Audio Spectrum", 13, 10
DB 9, "S1: PC Speaker", 9, 9, 9, "S10: Pro Audio Spectrum 16", 13, 10
DB 9, "S2: Sound Blaster 1.xx", 9, 9, "S11: Windows Sound System", 13, 10
DB 9, "S3: Sound Blaster 2.xx", 9, 9, "S12: ESS ES1868 AudioDrive", 13, 10
DB 9, "S4: Sound Blaster Pro", 9, 9, "S13: EWS64 XL Codec", 13, 10
DB 9, "S5: Sound Blaster 16", 9, 9, "S14: Ensoniq SoundscapeVIVO", 13, 10
DB 9, "S6: Sound Blaster AWE 32", 9, "S19: Generic MPU401", 13, 10
DB 9, "S7: Gravis UltraSound", 9, 9, "S20: Disk Writer (WAV)", 13, 10
DB 9, "S8: AMD Interwave", 9, 9, "S21: Disk Writer (MID)", 13, 10
DB 10
DB " Axxx", 9, "Set Base Address of sound card (hexadecimal)", 13, 10
DB " I###", 9, "Set IRQ of sound card (decimal)", 13, 10
DB " D###", 9, "Set DMA of sound card (decimal)", 13, 10
DB 10
DB " M###", 9, "Set Mixspeed", 13, 10
DB " L###", 9, "Limit number of channels (4-256)", 13, 10
DB "$"
MixErrorMsg DB "Error: Mixing speed invalid - setting ignored", 13, 10, "$"
AddressErrorMsg DB "Error: Base Address invalid - setting ignored", 13, 10, "$"
IRQErrorMsg DB "Error: IRQ number invalid - setting ignored", 13, 10, "$"
LimitErrorMsg DB "Error: Channel limit number invalid - setting ignored", 13, 10, "$"
ContinueMsg DB "Press any key to continue...$"
StartupList DB 0
StartupMode DB 0 ; Load? Or Load/Play? or Load/Save
StartupFileOffset DW 0
StartupFileSegment DW 0
StartupKeyListFunction DW Offset GetStartupKeyList1
; CX,DX
StartupInformation DW 11Ch, 0 ; Enter
DW 1Ch, 0 ; Release Enter
DW 10Fh, 0 ; Tab
DW 10Fh, 0 ; Tab
DW 10Fh, 0 ; Tab
DW 90Eh, 127 ; Ctrl-Backspace
ENDSTARTUPINFORMATION EQU $
SaveInformation DW 0, 0 ; Loading screen key-loss
DW 1FFh, 13h ; Ctrl-S
DW 0, 0 ; Saving screen key-loss
DW 1FFh, 11h ; Ctrl-Q
DW 1FFh, 'Y' ; 'Y'
ENDSAVEINFORMATION EQU $
StartupQueueOffset DW Offset StartupInformation
StartupQueueEnd DW Offset ENDSTARTUPINFORMATION
StartupQueueNextFunction DW Offset GetStartupKeyList2
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Functions ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Proc CapitaliseAL
Cmp AL, 'a'
JB CapitaliseAL1
Cmp AL, 'z'
JA CapitaliseAL1
Add AL, 'A'-'a'
CapitaliseAL1:
Ret
EndP CapitaliseAL
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc GetDecimalNumber ; Returns CX
LodsB
Cmp AL, '0'
JB GetDecimalNumber1
Cmp AL, '9'
JBE GetDecimalNumber2
GetDecimalNumber1:
StC
Ret
GetDecimalNumber2:
Xor CX, CX
GetDecimalNumber3:
Mov BL, AL
Sub BL, '0'
Xor BH, BH
Mov AX, 10
Mul CX
Add AX, BX
Mov CX, AX
LodsB
And DX, DX
JNZ GetDecimalNumber1
Cmp AL, '0'
JB GetDecimalNumber4
Cmp AL, '9'
JA GetDecimalNumber4
Jmp GetDecimalNumber3
GetDecimalNumber4:
ClC
Ret
EndP GetDecimalNumber
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Start
Assume DS:Nothing
; 386 check.
Trace "Impulse Tracker Startup"
Push SP
Pop AX
Cmp AX, SP
JNE No386
PushF
Pop CX ; CX = Flags.
Mov AX, CX
Or AX, 0F000h
Push AX
PopF
PushF
Pop AX
And AX, 0F000h
JNZ Found386
No386:
Push CS
Pop DS
Mov AH, 9
Mov DX, Offset No386Msg
Int 21h
Mov AX, 4C02h
Int 21h
Found386:
; Push 0B800h ; DEBUG!!!!!
; Pop GS ; DEBUG!!!!!
Push CX
PopF
ClD
Mov [CS:PSP], ES
Mov AX, ES
Mov BX, SS
Sub BX, AX
Add BX, StackSize / 16 ; Add BX, <Size reqd for Stack in para>
Mov AH, 4Ah ; Re-allocate memory
Int 21h
; Check for 386 here.
; Do command line stuff.
Mov SI, 81h ; DS:SI points to cmdtail
CmdLine1:
Push ES
Pop DS
LodsB
CmdLine3:
Cmp AL, 0Dh
JE CmdLineEnd
And AL, AL
JZ CmdLineEnd
Call CapitaliseAL
CmdLine2:
Cmp AL, 'K'
JE KeyboardSwap
Cmp AL, 'F'
JE DisableColours
Cmp AL, 'C'
JE SetControl
Cmp AL, 'H'
JE ShowCmdLineHelp
Cmp AL, '?'
JE ShowCmdLineHelp
Cmp AL, 'S'
JE SetSoundCard1
Cmp AL, 'D'
JE SetDMA1
Cmp AL, 'M'
JE SetMixSpeed1
Cmp AL, 'I'
JE SetIRQ1
Cmp AL, 'A'
JE SetAddress1
Cmp AL, 'V'
JE OverrideVGA
Cmp AL, 'L'
JE Limit1
Cmp AL, 'R'
JE Reverse1
Cmp AL, 'X'
JE DisableFeatures
Cmp AL, 'P'
JE PatternStorage
Cmp AL, 'T'
JE NoShowUsageTime
Cmp AL, 'W'
JE ConvertModule
Jmp CmdLine1
NoShowUsageTime:
LodsB
Cmp AL, '1'
JNE NoReleaseTimeSlice
Push DS
Push InfoLine
Pop DS
Assume DS:InfoLine
Mov [ShowUsageTime], 0
Pop DS
Jmp CmdLine1
Assume DS:Nothing
NoReleaseTimeSlice:
Cmp AL, '2'
JNE CmdLine3
NoReleaseTimeSlice2:
Push DS
Push Main
Pop DS
Assume DS:Main
Mov [ReleaseTimeSlice], 1
Pop DS
Jmp CmdLine1
PatternStorage:
LodsB
Sub AL, '0'
JC PatternStorageEnd
Cmp AL, 2
JA PatternStorageEnd
Call Music_PatternStorage
Jmp CmdLine1
PatternStorageEnd:
Jmp CmdLine3
DisableFeatures:
LodsB
Cmp AL, '1'
JB CmdLine3
JE DisableMMTSR
Cmp AL, '3'
JB DisableMouse
JE DisableDetectDriveMap
Cmp AL, '5'
JB DisableCacheFiles
Jmp CmdLine3
DisableMouse:
Call CmdLineDisableMouse
Jmp CmdLine1
DisableMMTSR:
Mov [LoadMMTSR], 0
Jmp CmdLine1
DisableDetectDriveMap:
Push Disk
Pop DS
Assume DS:Disk
Or [DiskOptions], 1
Jmp CmdLine1
Assume DS:Nothing
DisableCacheFiles:
Push Disk
Pop DS
Assume DS:Disk
Or [DiskOptions], 2
Jmp CmdLine1
Assume DS:Nothing
KeyboardSwap:
Mov AX, Object1
Mov DS, AX
Assume DS:Object1
Mov [HelpKeyValue], 157h
Mov [OrderKeyValue], 13Bh
Jmp CmdLine1
Assume DS:Nothing
DisableColours:
Call D_DisableFileColours
Jmp CmdLine1
Reverse1:
Call Music_ReverseChannels
Jmp CmdLine1
OverrideVGA:
LodsB
Mov CX, Screen
Mov DS, CX
Assume DS:Screen
Cmp AL, '1'
JE OverrideVGA1
Cmp AL, '2'
JE Matrox
Cmp AL, '3'
JE WaitforRetrace
Cmp AL, '4'
JE Retrace
Jmp CmdLine3
OverrideVGA1:
Or [VGAFlags], 1
Jmp CmdLine1
WaitforRetrace:
Or [VGAFlags], 4
Jmp CmdLine1
Retrace:
Or [VGAFlags], 2
Jmp CmdLine1
Matrox:
Mov [CharacterGenerationOffset], 256*32
Mov AX, Mouse
Mov DS, AX
Assume DS:Mouse
Mov [MouseCharacterGenerationOffset], 256*32
Jmp CmdLine1
Assume DS:Nothing
SetControl:
Mov [CS:Control], 1
Jmp CmdLine1
ShowCmdLineHelp:
Push CS
Pop DS
Mov AH, 9
Mov DX, Offset CmdLineHelp
Int 21h
Mov AX, 4C00h
Int 21h
SetSoundCard1:
Call GetDecimalNumber
JC SetSoundCardDriver
Cmp CX, 21
JA SetSoundCard2
Push AX
Mov AX, CX
Call Music_SetSoundCard
Pop AX
SetSoundCard2:
Jmp CmdLine3
SetSoundCardDriver:
Cmp AL, 32
JBE CmdLine3
Dec SI
Call Music_SetSoundCardDriver
SetSoundCardDriver1:
LodsB
Cmp AL, 32
JA SetSoundCardDriver1
Mov Byte Ptr [SI-1], 0
Cmp AL, 32
JE CmdLine1
Jmp CmdLineEnd
ConvertModule:
Mov [CS:StartupList], 1
Mov [CS:StartupFileOffset], SI
Mov [CS:StartupFileSegment], DS
Jmp SetSoundCardDriver1
SetDMA1:
LodsB
Cmp AL, '0'
JB CmdLine3
Cmp AL, '7'
JA CmdLine3
Sub AL, '0'
Call Music_SetDMA
Jmp CmdLine1
SetMixSpeed1:
Call GetDecimalNumber
JC SetMixSpeedError
Push AX
Call Music_SetMixSpeed
Pop AX
Jmp CmdLine3
SetMixSpeedError:
Push CS
Pop DS
Assume DS:StartUp
Mov AH, 9
Mov DX, Offset MixErrorMsg
Int 21h
Mov [Pause], 1
Jmp CmdLine1
Assume DS:Nothing
SetIRQ1:
Call GetDecimalNumber
JC IRQError
Cmp CX, 15
JA IRQError
Push AX
Call Music_SetIRQ
Pop AX
Jmp CmdLine3
IRQError:
Push CS
Pop DS
Assume DS:StartUp
Mov AH, 9
Mov DX, Offset IRQErrorMsg
Int 21h
Mov [Pause], 1
Jmp CmdLine1
Assume DS:Nothing
SetAddress1:
LodsB
Xor DX, DX
Mov CL, 4
Cmp AL, '0'
JB SetAddress2
Cmp AL, '9'
JA SetAddress2
Sub AL, '0'
Jmp SetAddress3
SetAddress2:
Call CapitaliseAL
Cmp AL, 'A'
JB CmdLine2
Cmp AL, 'F'
JA CmdLine2
Sub AL, '@'
SetAddress3:
Test DX, 0F000h
JNZ AddressError
ShL DX, CL
Or DL, AL
LodsB
Cmp AL, '0'
JB SetAddress4
Cmp AL, '9'
JA SetAddress4
Sub AL, '0'
Jmp SetAddress3
SetAddress4:
Call CapitaliseAL
Cmp AL, 'A'
JB SetAddress5
Cmp AL, 'F'
JA SetAddress5
Sub AL, '@'
Jmp SetAddress3
SetAddress5:
Call Music_SetAddress
Jmp CmdLine3
AddressError:
Push CS
Pop DS
Assume DS:StartUp
Mov AH, 9
Mov DX, Offset AddressErrorMsg
Int 21h
Mov [Pause], 1
Jmp CmdLine1
Assume DS:Nothing
Limit1:
Call GetDecimalNumber
JC LimitError
Cmp CX, 256
JA LimitError
Cmp CX, 4
JB LimitError
Push AX
Call Music_SetLimit
Pop AX
Jmp CmdLine3
LimitError:
Push CS
Pop DS
Assume DS:StartUp
Mov AH, 9
Mov DX, Offset LimitErrorMsg
Int 21h
Mov [Pause], 1
Jmp CmdLine1
Assume DS:Nothing
CmdLineEnd:
Trace "Command Line Parsed"
Push CS
Pop DS
Assume DS:StartUp
Trace "Windows Detection"
Mov AX, 1600h ; Windows detection.
Int 2Fh
Test AL, 7Fh
JZ Start1
Cmp AL, 4 ; Windows 4.0+ ??
JAE Start1
Mov AH, 9
Mov DX, Offset WindowsMsg
Int 21h
Xor AX, AX
Int 16h
Start1:
; Get Comspec
Cmp [Pause], 1
JNE NoPause
Mov DX, Offset ContinueMsg
Mov AH, 9
Int 21h
Xor AX, AX
Int 16h
NoPause:
Trace "Retrieving Environment"
Mov SI, Offset COMSPECString
Mov CX, 7
Call GetEnvironment
JC Start2
Mov [COMSPECFound], 1
Mov [Word Ptr COMSPEC], DI
Mov [Word Ptr COMSPEC+2], ES
Start2:
Mov FS, [CS:PSP]
Trace "Initialising Screen Module"
Call S_InitScreen
Trace "Initialising Disk Module"
Call D_InitDisk
Trace "Initialising Expanded Memory Module"
Call E_InitEMS
Trace "Initialising Music Module"
Call Music_InitMusic
Trace "Initialising Keyboard Module"
Call K_InitKeyBoard
Trace "Initialising Edit Module"
Call PE_InitPatternEdit
Trace "Initialising Custom Keyboard Layout"
Call K_InstallKeyboardType
Trace "Initialising Error Handler Module"
Call Error_InitHandler
Cmp [CS:LoadMMTSR], 0
JE SkipMMTSR
Trace "Initialising MMTSR Module"
Call MMTSR_InstallMMTSR
SkipMMTSR:
Trace "Initialising Mouse Module"
Call InitMouse
Call S_ClearScreen
Trace "Initialising Timer Module"
Call InitTimerHandler
Trace "Initialising Soundcard"
Call Music_AutoDetectSoundCard
Trace "Entering Main Message Loop"
Mov DI, Offset O1_AutoDetectList
; Mov DI, Offset O1_KeyboardList
Mov CX, 0FFFFh
Call M_Object1List
Jmp Quit1
Proc Quit Far
Mov DI, Offset O1_ConfirmQuit
Mov CX, 3
Call M_Object1List
And DX, DX
JNZ Quit1
Mov AX, 1
RetF
Quit1:
Call PECheckModified
Call Music_Stop
IF NETWORKENABLED
Call Network_Shutdown
ENDIF
Call MMTSR_UninstallMMTSR
Call PE_UnInitPatternEdit
Call Music_UnInitMusic
Call UnInitMouse
Call S_UnInitScreen
Call E_UnInitEMS
Call K_UnInitKeyBoard
Call Error_UnInitHandler
Call D_UnInitDisk
Call K_RemoveKeyboardType
Call UnInitTimerHandler
Mov AX, 4C00h
Int 21h
EndP Quit
EndP Start
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc IsStartupKeyList Far
Mov AL,CS:StartupList
Ret
EndP IsStartupKeyList
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc GetStartupKeyList Far
Jmp [CS:StartupKeyListFunction]
GetStartupKeyList1:
Push SI
Mov SI, [CS:StartupQueueOffset]
Mov CX, [CS:SI]
Mov DX, [CS:SI+2]
Add SI, 4
Mov [CS:StartupQueueOffset], SI
Cmp SI, [CS:StartupQueueEnd]
Pop SI
JB GetStartupKeyList1End
Mov AX, [CS:StartupQueueNextFunction]
Mov [CS:StartupKeyListFunction], AX
GetStartupKeyList1End:
Ret
GetStartupKeyList2:
Push DS
Push SI
LDS SI, [DWord Ptr CS:StartupFileOffset]
LodsB
Mov [CS:StartupFileOffset], SI
Pop SI
Pop DS
Cmp AL, 32
JE GetStartupKeyList2EndOfString
And AX, 0FFh
JZ GetStartupKeyList2EndOfString
Mov DX, AX
Mov CX, 1FFh
Ret
GetStartupKeyList2EndOfString:
Mov [CS:StartupQueueOffset], Offset SaveInformation
Mov [CS:StartupQueueEnd], Offset ENDSAVEINFORMATION
Mov [CS:StartupQueueNextfunction], Offset GetStartupKeyList3
Mov [CS:StartupKeyListFunction], Offset GetStartupKeyList1
Mov CX, 11Ch ; Enter
Mov DX, 0
Ret
GetStartupKeyList3: ; Save module then quit
Xor CX, CX
Xor DX, DX
Mov [CS:StartupList], 0
Ret
EndP GetStartupKeyList
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc CrashRecovery Far ; CtrlAltDel location.
ClD
StI
Call S_ClearScreen
Call S_InitScreen
Call D_InitDisk
Call InitMouse
Mov DI, Offset O1_CrashRecovery
Mov CX, 0FFFFh
Call M_Object1List
Mov DI, Offset O1_PatternEditList
Mov CX, 0FFFFh
Jmp M_Object1List
EndP CrashRecovery
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc GetEnvironment Far ; DS:SI points to string.
; CX = length of string.
; Returns ES:DI