-
Notifications
You must be signed in to change notification settings - Fork 5
/
ADELE.ASM
6827 lines (6690 loc) · 160 KB
/
ADELE.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
; Malte Genesis IV: AdŠle
; Module Chryo-g‚n‚tique de virtualisation de la persception
; Tous droits r‚serv‚s par les Chevaliers de Malte
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
;
; Description
; ÍÍÍÍÍÍÍÍÍÍÍ
; Ce module se charge du lancement de la d‚tection du pilote vid‚o ainsi
; que le tampon d'ouverture pour la gestion vid‚o de Chantal. Pour en savoir
; plus, il suffit de consulter les documents ®\MALTE\TEXT\PROJETMA.LTE\
; CHANTAL\*.*¯.
;
;
; Remarques
; ÍÍÍÍÍÍÍÍÍ
; þ Il est con‡u pour fonctionner sur un processeur 8088 ou post‚rieur, et
; tous changements de cette sp‚cification entraŒne n‚cessairement un
; ®scrache¯!
; þ Tous les m‚canismes suppose que le module commence … n'importe quel
; segment, MAIS avec l'offset 0!
;
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Sp‚cification
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
.8086
.MODEL TPASCAL
Jumps
Adele equ 1 ; D‚finit la bibliothŠque Malte Genesis V: AdŠle
Include Systex.Inc
Include Library\Compiler\Assemble.ur\Dialect.Inc
Include Library\Disk\Bios\ChkSCSI.Mac
Include Library\Video\Card\ChkTride.Mac
Include Library\Video\Card\ChkXGA.Mac
Include Library\Video\Card\V7VRam.Mac
Include Library\Sound\AdLib\AdLibChk.Mac
.DATA
extrn Jump
extrn StartUp
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Pr‚requis externe
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Extrn CheckSVGA,VesaBiosBank,PrefixSeg,IsAdLib,IsSoundBlaster,IsGravis
Extrn IsRoland,IsTandyDigital,SoundMem,SoundPort,ModeSupport,MemAlloc
Extrn NumModeSupport,DefMousePort,TypeMouse,COMLCR,ComBase,ComInt,ComIRQ
Extrn DefMouseCom,IRQIntNumMouse,PicStateMouse
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Les entˆtes des pilotes
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Public Init,BarSpcHor,CloseCur,ClrLnHor,ClrLnHorImg,ClrWn,ClrScr,CopT8Bin
Public Copy8Bin,FillBox,GetAttr,GetChr,GetCube,GetLnHorImg,GetPixel
Public GetSizeSmlImg,GetSmlImg,MoveText,PCopy,PutFillBox,PutLn,PutLnHor
Public PutSmlImg,PutSprite,PutTxtXY,PutTxtXYUnKr,SetAttr,SetBackgroundColor
Public SetBlink,SetBorderColor,SetBytesPerLn,SetChr,SetChrWidth,PCopy2Img
Public SetCube,SetCur,SetCurPos,SetGCube,SetGCubeT,BarSpcVer,BarTxtHor
Public SetHorizontalScale,SetMatrix,SetModeMtx,BarChrHor,BarChrVer
Public SetModeScr,SetPalBlk,SetPaletteRGB,SetPalRGB,FillBnk,SetWriteMode
Public SetPg,SetPixel,SetVerticalScale,SetVisualPg,SetUnderline
Public SplitScreen,SetBnkPg,ReadBnk,WriteBnk,Done,Circle,PutFillCircle
Public _GetVideoCard,viInitVideo,PutFillRoundRect,PutRoundRect,PutRect
Public CloseIcon,DownIcon, IsLuxe, LeftIcon,SelIcon
Public SetLuxe, RightIcon,UnSelIcon,UpIcon, ZoomIcon
Public DossierDocumentIcon,DossierProgramIcon
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Fonctions et Proc‚dures inclue dans ce module
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Public StartUpChantal
Public AutoDetect,InitSound
Public viSetVideoModePrim,viSetVideoSizePrim
Public SetHeightChr,GetRealRawY,GetRawY,SetDblMtx,SetExtChr,SetExtCube
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Les duplications des fonctions et proc‚dures
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Public BarSpaceHorizontal,BarSpaceHori,BarSpaceHor
Public ClearLineHori,ClearLineHor
Public Cls,ClearScr,ClearScreen,FillScreen
Public ClsCur,CloseCursor
Public GetChar,GetCharacter
Public GetPIVSec
Public GetRealRawYWord
Public GotoXY,Locate,SetCursorPos,SetCursorPosition
Public _ImageSize
Public Plot,Point,PSet
Public PutCharGAttr
Public PutTxtXYUnCol,WriteXYUnKr
Public SetChar,SetCharacter
Public SelBnkPg,ClearWindow,PageCopy,SetPage
Public PutLine,PutLineHori,SetVisualPage,SetCursor
Public SetModeMatrix,SetModeScreen,PutTextXY
Public WriteXY,Stat,_GetPixel
Public _SetActivePage,Bar
Public PutCloseIcon,PutDownIcon
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Fonction par d‚faut du StartUp
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Public directAltPress,directCtrlPress,directFillChar,directGetIntVec
Public directGetRawTimer,directGetRawTimerB,directJoyPos,directKeyPress
Public directLShiftPress,directMove,directPushKey,directRawReadKey
Public directRShiftPress,directSetIntVec,directShiftPress
Public MtxStartUp,directFillChar386,directMove386
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Constante interne du module
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
indexProcSelBnkPgVGA equ 1
indexProcSelBnkPgAhead equ 2
indexProcSelBnkPgATI equ 3
indexProcSelBnkPgCirrus equ 4
indexProcSelBnkPgCTI equ 5
indexProcSelBnkPgEverex equ 6
indexProcSelBnkPgGenoa equ 7
indexProcSelBnkPgHeadLand equ 8
indexProcSelBnkPgOak equ 9
indexProcSelBnkPgParadise equ 10
indexProcSelBnkPgSTB equ 11
indexProcSelBnkPgTrident equ 12
indexProcSelBnkPgTsengET3000 equ 13
indexProcSelBnkPgTsengET4000 equ 14
indexProcSelBnkPgVesa equ 15
indexProcSelBnkPgVideo7 equ 16
indexProcSelBnkPgXGA equ 17
indexProcSelBnkPgZymos equ 18
indexProcSelBnkPgAheadA equ 19
indexProcSelBnkPgAheadB equ 20
indexProcSelBnkPgATI_GNU equ 21 ; ATI selon la m‚thode GNU...
indexProcSelBnkPgChips equ 22
indexProcSelBnkPgTrident89 equ 23
indexProcSelBnkPgVesaBios equ 24
indexProcSelBnkPgATIGUPro equ 25 ; ATI GU Pro/Ultra
indexProcSelBnkPgATI16MD equ 26 ; ATI 16 MD
indexProcSelBnkPgAcumos equ 27 ; Acumos
indexProcSelBnkPgCirrus54 equ 28 ; Cirrus 54
indexProcSelBnkPgCL5426 equ 29 ; CL5426
indexProcSelBnkPgSS24X equ 30 ; SS24X/WD90C3x
indexProcSelBnkPgRealTek equ 31 ; RealTek
indexProcSelBnkPgS3805_1M equ 32 ; S3805 - 1M / S3864 - 2M
indexProcSelBnkPgSParadise equ 33 ; SParadise
indexProcSelBnkPgVESAS3 equ 34 ; VESA S3
indexProcSelBnkPgViper equ 35 ; Viper
indexProcSelBnkPgWDVanila equ 36 ; WD Vanila / WD90C31
indexProcSelBnkPgMatrox equ 37 ; Matrox
indexProcSetVidModeMDAPrim equ 21
indexProcSetVidModeMDASec equ 22
indexProcSetVidModeHerculePrim equ 23
indexProcSetVidModeHerculeSec equ 24
indexProcSetVidModeHP95LXPrim equ 25
indexProcSetVidModeCGAPrim equ 26
indexProcSetVidModeCGASec equ 27
indexProcSetVidModeGSPrim equ 28
indexProcSetVidModeGSSec equ 29
indexProcSetVidModeGSEmulPrim equ 30
indexProcSetVidModeGSEmulSec equ 31
indexProcSetVidModePCJrPrim equ 32
indexProcSetVidModeTandy1000Prim equ 33
indexProcSetVidModeEGAPrim equ 34
indSVMAheadEGA2001Prim equ 35
indexProcSetVidModeATT6300Prim equ 36
indexProcSetVidModeEGAWonderPrim equ 37
indSVMLavaChrome2EGAPrim equ 38
indSVMParadiseEGA480Prim equ 39
indSVMTaxan565EGAPrim equ 40
indSVMUltraVisionEGAPrim equ 41
indexProcSetVidModeVGAPrim equ 42
indexProcSetVidModeAheadBPrim equ 43
indSVMAllStarPeacockPrim equ 44
indSVMASTVGAPlusPrim equ 45
indexProcSetVidModeATTVDC600Prim equ 46
indexProcSetVidModeCardinalPrim equ 47
indexProcSetVidModeCirrusPrim equ 48
indexProcSetVidModeEverexPrim equ 49
indexProcSetVidModeGenoaPrim equ 50
indSVMHPD1180APrim equ 51
indexProcSetVidModeMorseVGAPrim equ 52
indexProcSetVidModeOakPrim equ 53
indexProcSetVidModeOrchidPrim equ 54
indexProcSetVidModeOrchidProPrim equ 55
indexProcSetVidModeParadisePrim equ 56
indexProcSetVidModeRealtekRTVGA equ 57
indexProcSetVidModeSigmaPrim equ 58
indexProcSetVidModeSTBPrim equ 59
indexProcSetVidModeTatungVGAPrim equ 60
indSVMTecmarVGAADPrim equ 61
indexProcSetVidModeTridentPrim equ 62
indSVMTsengET4000Prim equ 63
indSVMTsengET4000HiKrPrim equ 64
indexProcSetVidModeVGAWonderPrim equ 65
indexProcSetVidModeVESAPrim equ 66
indexProcSetVidModeVideo7Prim equ 67
indexProcSetVidModeXGA equ 68
indexProcSelBnkPgRet equ 143
.CODE
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Fonctions et proc‚dures virtuel
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Init Proc Far
viSetVideoModePrim Proc Far
NOP
NOP
NOP
endp
endp
viSetVideoSizePrim Proc Far
BarChrHor Proc Far
NOP
NOP
NOP
endp
endp
BarChrVer Proc Far
NOP
NOP
NOP
endp
BarSpaceHorizontal Proc Far
BarSpaceHori Proc Far
BarSpaceHor Proc Far
BarSpcHor Proc Far
NOP
NOP
NOP
endp
endp
endp
endp
BarSpcVer Proc Far
NOP
NOP
NOP
endp
BarTxtHor Proc Far
NOP
NOP
NOP
endp
Circle Proc Far
NOP
NOP
NOP
endp
CloseCursor Proc Far
ClsCur Proc Far
CloseCur Proc Far
NOP
NOP
NOP
endp
endp
endp
ClearLineHori Proc Far
ClearLineHor Proc Far
ClrLnHor Proc Far
NOP
NOP
NOP
endp
endp
endp
ClrLnHorImg Proc Far
NOP
NOP
NOP
endp
ClearWindow Proc Far
ClrWn Proc Far
NOP
NOP
NOP
endp
endp
FillScreen Proc Far
Cls Proc Far
ClearScreen Proc Far
ClearScr Proc Far
ClrScr Proc Far
NOP
NOP
NOP
endp
endp
endp
endp
endp
CopT8Bin Proc Far
NOP
NOP
NOP
endp
Copy8Bin Proc Far
NOP
NOP
NOP
endp
FillBox Proc Far
NOP
NOP
NOP
endp
GetAttr Proc Far
NOP
NOP
NOP
endp
GetCharacter Proc Far
GetChar Proc Far
GetChr Proc Far
NOP
NOP
NOP
endp
endp
endp
Stat Proc Far
GetCube Proc Far
NOP
NOP
NOP
endp
endp
GetLnHorImg Proc Far
NOP
NOP
NOP
endp
_GetPixel Proc Far
GetPixel Proc Far
NOP
NOP
NOP
endp
endp
_ImageSize Proc Far
GetSizeSmlImg Proc Far
NOP
NOP
NOP
endp
endp
GetSmlImg Proc Far
NOP
NOP
NOP
endp
MoveText Proc Far
NOP
NOP
NOP
endp
PageCopy Proc Far
PCopy Proc Far
NOP
NOP
NOP
endp
endp
PCopy2Img Proc Far
NOP
NOP
NOP
endp
PutCharGAttr Proc Far
NOP
NOP
NOP
endp
Bar Proc Far
PutFillBox Proc Far
NOP
NOP
NOP
endp
endp
PutFillCircle Proc Far
NOP
NOP
NOP
endp
PutFillRoundRect Proc Far
NOP
NOP
NOP
endp
PutLine Proc Far
PutLn Proc Far
NOP
NOP
NOP
endp
endp
PutLineHori Proc Far
PutLnHor Proc Far
NOP
NOP
NOP
endp
endp
PutRect Proc Far
NOP
NOP
NOP
endp
PutRoundRect Proc Far
NOP
NOP
NOP
endp
PutSmlImg Proc Far
NOP
NOP
NOP
endp
PutSprite Proc Far
NOP
NOP
NOP
endp
WriteXY Proc Far
PutTextXY Proc Far
PutTxtXY Proc Far
NOP
NOP
NOP
endp
endp
endp
WriteXYUnKr Proc Far
PutTxtXYUnCol Proc Far
PutTxtXYUnKr Proc Far
NOP
NOP
NOP
endp
endp
endp
SetAttr Proc Far
NOP
NOP
NOP
endp
SetBackgroundColor Proc Far
NOP
NOP
NOP
endp
SetBlink Proc Far
NOP
NOP
NOP
endp
SetBorderColor Proc Far
NOP
NOP
NOP
endp
SetBytesPerLn Proc Far
NOP
NOP
NOP
endp
SetChar Proc Far
SetCharacter Proc Far
SetChr Proc Far
NOP
NOP
NOP
endp
endp
endp
SetChrWidth Proc Far
NOP
NOP
NOP
endp
SetCube Proc Far
NOP
NOP
NOP
endp
SetCursor Proc Far
SetCur Proc Far
NOP
NOP
NOP
endp
endp
GotoXY Proc Far
Locate Proc Far
SetCursorPosition Proc Far
SetCursorPos Proc Far
SetCurPos Proc Far
NOP
NOP
NOP
endp
endp
endp
endp
endp
SetDblMtx Proc Far
NOP
NOP
NOP
endp
SetExtChr Proc Far
NOP
NOP
NOP
endp
SetExtCube Proc Far
NOP
NOP
NOP
endp
SetGCube Proc Far
NOP
NOP
NOP
endp
SetGCubeT Proc Far
NOP
NOP
NOP
endp
SetHorizontalScale Proc Far
NOP
NOP
NOP
endp
SetMatrix Proc Far
NOP
NOP
NOP
endp
SetModeMatrix Proc Far
SetModeMtx Proc Far
NOP
NOP
NOP
endp
endp
SetModeScreen Proc Far
SetModeScr Proc Far
NOP
NOP
NOP
endp
endp
SetPalBlk Proc Far
NOP
NOP
NOP
endp
SetPaletteRGB Proc Far
NOP
NOP
NOP
endp
SetPalRGB Proc Far
NOP
NOP
NOP
endp
_SetActivePage Proc Far
SetPage Proc Far
SetPg Proc Far
NOP
NOP
NOP
endp
endp
endp
Plot Proc Far
Point Proc Far
PSet Proc Far
SetPixel Proc Far
NOP
NOP
NOP
endp
endp
endp
endp
SetUnderline Proc Far
NOP
NOP
NOP
endp
SetVerticalScale Proc Far
NOP
NOP
NOP
endp
SetVisualPage Proc Far
SetVisualPg Proc Far
NOP
NOP
NOP
endp
endp
SetWriteMode Proc Far
NOP
NOP
NOP
endp
SplitScreen Proc Far
NOP
NOP
NOP
endp
SelBnkPg Proc Far
SetBnkPg Proc Far
NOP
NOP
NOP
endp
endp
ReadBnk Proc Far
NOP
NOP
NOP
endp
WriteBnk Proc Far
NOP
NOP
NOP
endp
FillBnk Proc Far
NOP
NOP
NOP
endp
Done Proc Far
NOP
NOP
NOP
endp
SetLuxe Proc Far
NOP
NOP
NOP
endp
IsLuxe Proc Far
RETF
; NOP
NOP
NOP
endp
PutCloseIcon Proc Far
CloseIcon Proc Far
NOP
NOP
NOP
endp
endp
PutDownIcon Proc Far
DownIcon Proc Far
NOP
NOP
NOP
endp
endp
LeftIcon Proc Far
NOP
NOP
NOP
endp
RightIcon Proc Far
NOP
NOP
NOP
endp
SelIcon Proc Far
NOP
NOP
NOP
endp
UnSelIcon Proc Far
NOP
NOP
NOP
endp
UpIcon Proc Far
NOP
NOP
NOP
endp
ZoomIcon Proc Far
NOP
NOP
NOP
endp
DossierDocumentIcon Proc Far
NOP
NOP
NOP
endp
DossierProgramIcon Proc Far
NOP
NOP
NOP
endp
RayTxtY:
DW 0
RawY:
DW 0
RealRawY:
DW 0
RET
@viData: ; Donn‚e temporaire pour les VGA, SVGA ou ordinateur PS/2
DW 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0
DB 108 DUP (0)
; DB 13,10
; DB "L'Ensemble Malte Genesis V: AdŠle. Tous droits r‚serv‚s aux ",13,10
; DB "Chevaliers de Malte (C) 1997. Originaire du Qu‚bec: Sept-Iles, ",13,10
; DB "Alma et Laval. Gestionnaire principal du systŠme vid‚o d'un PC ",13,10
; DB "compatible IBM.",13,10,13,10
@Maitre:
DB ('A'+128),('d'+128),('Š'-128),('l'+128),('e'+128),(' '+128),('d'+128),('e'+128),('m'+128),('a'+128)
DB ('n'+128),('d'+128),('e'+128),(' '+128),('…'-128),(' '+128),('F'+128),('a'+128),('n'+128),('t'+128)
DB ('o'+128),('m'+128),('a'+128),('s'+128),(' '+128),('d'+128),('e'+128),(' '+128),('t'+128),('e'+128)
DB (' '+128),('r'+128),('‚'-128),('v'+128),('‚'-128),('l'+128),('e'+128),('r'+128),(' '+128),('l'+128)
DB ('a'+128),(' '+128),('d'+128),('e'+128),('s'+128),('c'+128),('e'+128),('n'+128),('d'+128),('e'+128)
DB ('n'+128),('c'+128),('e'+128),(' '+128),('d'+128),('u'+128),(' '+128),('M'+128),('a'+128),('Œ'-128)
DB ('t'+128),('r'+128),('e'+128),(':'+128),( 13+128),( 10+128),( 13+128),( 10+128)
DB ('C'+128),('o'+128),('d'+128),('e'+128),('r'+128),(' '+128),('p'+128),('a'+128),('r'+128),(' '+128)
DB ('S'+128),('y'+128),('l'+128),('v'+128),('a'+128),('i'+128),('n'+128),(' '+128),('M'+128),('a'+128)
DB ('l'+128),('t'+128),('a'+128),('i'+128),('s'+128),(','+128),(' '+128),('F'+128),('i'+128),('l'+128)
DB ('s'+128),(' '+128),('d'+128),('e'+128),(' '+128),('L'+128),('a'+128),('u'+128),('r'+128),('e'+128)
DB ('n'+128),('t'+128),(' '+128),('M'+128),('a'+128),('l'+128),('t'+128),('a'+128),('i'+128),('s'+128)
DB (','+128),(' '+128),('F'+128),('i'+128),('l'+128),('s'+128),(' '+128),('d'+128),('e'+128),(' '+128)
DB ('C'+128),('h'+128),('a'+128),('r'+128),('l'+128),('e'+128),('u'+128),('g'+128),('e'+128),('n'+128)
DB (' '+128),('M'+128),('a'+128),('l'+128),('t'+128),('a'+128),('i'+128),('s'+128),(','+128),(' '+128)
DB ('F'+128),('i'+128),('l'+128),('s'+128),(' '+128),('d'+128),('e'+128),(' '+128),('L'+128),('o'+128)
DB ('u'+128),('i'+128),('s'+128),(' '+128),('M'+128),('a'+128),('l'+128),('t'+128),('a'+128),('i'+128)
DB ('s'+128),(','+128),(' '+128)
DB ('F'+128),('i'+128),('l'+128),('s'+128),(' '+128),('d'+128),("'"+128),('A'+128),('n'+128),('i'+128)
DB ('c'+128),('e'+128),('t'+128),(' '+128),('M'+128),('a'+128),('l'+128),('t'+128),('a'+128),('i'+128)
DB ('s'+128),(','+128),(' '+128),('F'+128),('i'+128),('l'+128),('s'+128),(' '+128),('d'+128),('e'+128)
DB (' '+128),('R'+128),('o'+128),('m'+128),('u'+128),('a'+128),('l'+128),('d'+128),(' '+128),('M'+128)
DB ('a'+128),('l'+128),('t'+128),('a'+128),('i'+128),('s'+128),( 13+128),( 10+128),( 13+128),( 10+128)
DB ('S'+128),('o'+128),('u'+128),('v'+128),('i'+128),('e'+128),('n'+128),('s'+128),('-'+128),('t'+128)
DB ('o'+128),('i'+128),(' '+128),('d'+128),('e'+128),(' '+128),('c'+128),('e'+128),(' '+128),('q'+128)
DB ('u'+128),('e'+128),(' '+128),('t'+128),('u'+128),(' '+128),('a'+128),('s'+128),(' '+128),('a'+128)
DB ('c'+128),('c'+128),('o'+128),('m'+128),('p'+128),('l'+128),('i'+128),(':'+128),( 13+128),( 10+128)
DB ('J'+128),('e'+128),('u'+128),('x'+128),(':'+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128)
DB (' '+128),('®'-128),('M'+128),('i'+128),('s'+128),('s'+128),('i'+128),('l'+128),('e'+128),(' '+128)
DB ('C'+128),('o'+128),('m'+128),('m'+128),('a'+128),('n'+128),('d'+128),('¯'-128),(','+128),('®'-128)
DB ('T'+128),('e'+128),('t'+128),('r'+128),('i'+128),('s'+128),('¯'-128),('*'+128),('3'+128),(','+128)
DB ('M'+128),('a'+128),('Œ'-128),('t'+128),('r'+128),('e'+128),(' '+128),('d'+128),('e'+128),(' '+128)
DB ('l'+128),('a'+128),(' '+128),('L'+128),('o'+128),('g'+128),('i'+128),('q'+128),('u'+128),('e'+128)
DB (','+128),('L'+128),('2'+128),('5'+128),(','+128),('L'+128),('A'+128),('B'+128),('Y'+128),('S'+128)
DB (','+128),('L'+128),('I'+128),('M'+128),(','+128),(13+128),(10+128)
DB ( 9+128),(' '+128),(' '+128)
DB (' '+128),('®'-128),('M'+128),('o'+128),('o'+128),('n'+128),('¯'-128),(','+128),('®'-128),('B'+128)
DB ('r'+128),('e'+128),('a'+128),('k'+128),('o'+128),('u'+128),('t'+128),('¯'-128),(','+128),('®'-128)
DB ('N'+128),('i'+128),('b'+128),('b'+128),('l'+128),('e'+128),('s'+128),('¯'-128),(','+128),('®'-128)
DB ('S'+128),('o'+128),('k'+128),('o'+128),('-'+128),('B'+128),('a'+128),('n'+128),('¯'-128),(','+128)
DB ('®'-128),('P'+128),('e'+128),('g'+128),('-'+128),('L'+128),('e'+128),('a'+128),('p'+128),('¯'-128)
DB (','+128),('®'-128),('P'+128),('a'+128),('c'+128),('-'+128),('M'+128),('a'+128),('n'+128),('¯'-128)
DB ( 13+128),( 10+128)
DB ('C'+128),('o'+128),('d'+128),('e'+128),('r'+128),(':'+128),(' '+128),(' '+128),(' '+128),(' '+128)
DB (' '+128),('B'+128),('a'+128),('s'+128),('i'+128),('c'+128),(' '+128),('P'+128),('r'+128),('o'+128)
DB (','+128),('C'+128),('o'+128),('m'+128),('p'+128),('i'+128),('l'+128),('a'+128),('t'+128),('e'+128)
DB ('u'+128),('r'+128),(' '+128),('P'+128),('a'+128),('s'+128),('c'+128),('a'+128),('l'+128),(' '+128)
DB ('B'+128),('5'+128),('7'+128),(','+128),('D'+128),('e'+128),('b'+128),('u'+128),('g'+128),(','+128)
DB ('L'+128),('S'+128),('M'+128),('B'+128),(','+128),('L'+128),('a'+128),('n'+128),('g'+128),('a'+128)
DB ('g'+128),('e'+128),(' '+128),('A'+128),('C'+128),(','+128),('C'+128),('2'+128),('P'+128),('A'+128)
DB ('S'+128),(','+128),( 13+128),( 10+128)
DB ( 9+128),(' '+128),(' '+128)
DB (' '+128),('R'+128),('C'+128),('2'+128),('P'+128),('A'+128),('S'+128),(','+128),('C'+128),('o'+128)
DB ('m'+128),('p'+128),('i'+128),('l'+128),('e'+128),('r'+128),(' '+128),('R'+128),('L'+128),('L'+128)
DB (','+128),('®'-128),('O'+128),('v'+128),('e'+128),('r'+128),('C'+128),('o'+128),('d'+128),('e'+128)
DB ('¯'-128),( 13+128),( 10+128)
DB ('G'+128),('e'+128),('s'+128),('t'+128),('i'+128),('o'+128),('n'+128),(':'+128),(' '+128),(' '+128)
DB (' '+128),('B'+128),('u'+128),('d'+128),('g'+128),('e'+128),('t'+128),('*'+128),('4'+128),(','+128)
DB ('I'+128),('n'+128),('v'+128),('e'+128),('n'+128),('t'+128),('a'+128),('i'+128),('r'+128),('e'+128)
DB (','+128),('M'+128),('a'+128),('l'+128),('t'+128),('e'+128),(' '+128),('B'+128),('a'+128),('s'+128)
DB ('e'+128),(','+128),('C'+128),('a'+128),('t'+128),('a'+128),('l'+128),('o'+128),('g'+128),('u'+128)
DB ('e'+128),('u'+128),('r'+128),(' '+128),('d'+128),('e'+128),(' '+128),('d'+128),('i'+128),('s'+128)
DB ('q'+128),('u'+128),('e'+128),('t'+128),('t'+128),('e'+128),( 13+128),( 10+128)
DB ('D'+128),('e'+128),('s'+128),('s'+128),('i'+128),('n'+128),(':'+128),(' '+128),(' '+128),(' '+128)
DB (' '+128),('D'+128),('E'+128),('S'+128),('S'+128),('M'+128),(','+128),('C'+128),('M'+128),('-'+128)
DB ('D'+128),('-'+128),('T'+128),('E'+128),('C'+128),('H'+128),(','+128),('E'+128),('l'+128),('e'+128)
DB ('c'+128),('t'+128),('r'+128),('o'+128),('n'+128),('i'+128),('c'+128),( 13+128),( 10+128)
DB ('O'+128),('u'+128),('t'+128),('i'+128),('l'+128),('s'+128),(':'+128),(' '+128),(' '+128),(' '+128)
DB (' '+128),('M'+128),('a'+128),('l'+128),('T'+128),('o'+128),('o'+128),('l'+128),('s'+128),(','+128)
DB ('C'+128),('o'+128),('m'+128),('m'+128),('a'+128),('n'+128),('d'+128),('e'+128),('r'+128),(' '+128)
DB ('M'+128),('a'+128),('l'+128),('t'+128),('a'+128),('i'+128),('s'+128),('*'+128),('2'+128),(','+128)
DB ('M'+128),('o'+128),('n'+128),('s'+128),('t'+128),('e'+128),('r'+128),('B'+128),('o'+128),('o'+128)
DB ('k'+128),(','+128),('P'+128),('H'+128),(','+128),('M'+128),('a'+128),('l'+128),('t'+128),('e'+128)
DB (' '+128),('O'+128),('p'+128),('‚'-128),('r'+128),('a'+128),('t'+128),('e'+128),('u'+128),('r'+128)
DB ( 13+128),( 10+128)
DB ('U'+128),('t'+128),('i'+128),('l'+128),('i'+128),('t'+128),('a'+128),('i'+128),('r'+128),('e'+128)
DB (':'+128),('A'+128),('V'+128),(''-128),(','+128),('D'+128),('I'+128),(','+128),('S'+128),('I'+128)
DB (','+128),('F'+128),('M'+128),(','+128),('D'+128),('o'+128),('s'+128),('K'+128),('e'+128),('y'+128)
DB (','+128),('H'+128),('e'+128),('x'+128),('a'+128),('p'+128),('l'+128),('e'+128),('s'+128),(','+128)
DB ('S'+128),('y'+128),('s'+128),('t'+128),('Š'-128),('m'+128),('e'+128),(' '+128),('I'+128),('n'+128)
DB ('f'+128),('o'+128),('r'+128),('m'+128),('a'+128),('t'+128),('i'+128),('o'+128),('n'+128),('*'+128)
DB ('3'+128),( 13+128),( 10+128)
DB ('E'+128),('n'+128),('s'+128),('e'+128),('m'+128),('b'+128),('l'+128),('e'+128),('/'+128),('B'+128)
DB ('i'+128),('b'+128),('l'+128),('i'+128),('o'+128),('t'+128),('h'+128),('Š'-128),('q'+128),('u'+128)
DB ('e'+128),(':'+128),('M'+128),('a'+128),('l'+128),('t'+128),('e'+128),(' '+128),('S'+128),('y'+128)
DB ('s'+128),('t'+128),('e'+128),('m'+128),(' '+128),('I'+128),('-'+128),('I'+128),('I'+128),(','+128)
DB ('M'+128),('a'+128),('l'+128),('t'+128),('e'+128),(' '+128),('G'+128),('e'+128),('n'+128),('e'+128)
DB ('s'+128),('i'+128),('s'+128),(' '+128),('I'+128),( 13+128),( 10+128)
DB ( 9+128),( 9+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),('M'+128),('a'+128)
DB ('l'+128),('t'+128),('e'+128),(' '+128),('G'+128),('e'+128),('n'+128),('e'+128),('s'+128),('i'+128)
DB ('s'+128),(' '+128),('I'+128),('I'+128),(':'+128),(' '+128),('P'+128),('h'+128),('o'+128),('e'+128)
DB ('n'+128),('i'+128),('x'+128),( 13+128),( 10+128)
DB ( 9+128),( 9+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),('M'+128),('a'+128)
DB ('l'+128),('t'+128),('e'+128),(' '+128),('G'+128),('e'+128),('n'+128),('e'+128),('s'+128),('i'+128)
DB ('s'+128),(' '+128),('I'+128),('I'+128),('I'+128),(':'+128),(' '+128),('I'+128),('s'+128),('a'+128)
DB ('b'+128),('e'+128),('l'+128),( 13+128),( 10+128)
DB ( 9+128),( 9+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),('M'+128),('a'+128)
DB ('l'+128),('t'+128),('e'+128),(' '+128),('G'+128),('e'+128),('n'+128),('e'+128),('s'+128),('i'+128)
DB ('s'+128),(' '+128),('I'+128),('V'+128),(':'+128),(' '+128),('C'+128),('h'+128),('a'+128),('n'+128)
DB ('t'+128),('a'+128),('l'+128),( 13+128),( 10+128)
DB ( 9+128),( 9+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),(' '+128),('M'+128),('a'+128)
DB ('l'+128),('t'+128),('e'+128),(' '+128),('G'+128),('e'+128),('n'+128),('e'+128),('s'+128),('i'+128)
DB ('s'+128),(' '+128),('V'+128),(';'+128),(' '+128),('A'+128),('d'+128),('Š'-128),('l'+128),('e'+128)
DB ( 13+128),( 10+128)
DB (0 +128) ; Fin du message
; Description
; ÍÍÍÍÍÍÍÍÍÍÍ
;
; Cette proc‚dure copie dans le drapeau du micro-processeur ZF dans le
; registre AL. Il n'y a que la valeur 0 ou 1 pouvant se retrouver dans
; le registre processeur AL.
@ZF2AL Proc Near
PUSHF
POP AX
SHL AL,1
MOV CL,7
SHR AL,CL
RET
endp
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Fonction viInitVideo:Byte
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
;
; Description
; ÍÍÍÍÍÍÍÍÍÍÍ
;
; Cette fonction d‚tecte le genre d'environnement vid‚o actuellement actif
; sur le systŠme vid‚o primaire.
;
;
; Remarques
; ÍÍÍÍÍÍÍÍÍ
;
; þ Cette fonction doit normalement ˆtre d‚truit automatiquement aprŠs un
; chargement de pilote vid‚o par l'interm‚daire de l'unit‚ justement
; Vid‚o. Un scratch peu donc ˆtre provoqu‚ par une mauvaise manipulation.
; þ Cette fonction fait des ajustements directement dans la zone ®PIV¯ en
; consid‚rant cette objet comme d‚marrant au d‚but d'un segment.
; þ Cette fonction une am‚lioration de la proc‚dure InitVideo de la
; BibliothŠque RLL ®Magician¯.
viInitVideo Proc Far
XOR AX,AX
MOV ES,AX
MOV AL,ES:[449h]
CMP AL,13h
JE vi0b
CMP AL,7
JE vi0
CMP AL,6
JE vi0c
CMP AL,4
JNB vi1
vi0:
MOV BL,No
JMP vi2
vi0b:
MOV AL,5
JMP viN9
vi0c:
MOV AL,2
JMP viN9
; C'est un mode Graphiques ?
vi1:
MOV AH,0Dh
XOR BH,BH
XOR CX,CX
XOR DX,DX
INT 10h
PUSH AX
MOV AX,0C01h
INT 10h
MOV AH,0Dh
INT 10h
MOV BL,AL
MOV AH,0Ch
POP AX
INT 10h
vi2:
MOV CS:[adrDataVideo].MIV.Graf,BL ; Init
CMP BL,Ya
JE vi7
XOR AX,AX
MOV ES,AX
MOV AH,0B0h
CMP Word Ptr ES:[463h],3D4h
JNE vi3
MOV AH,0B8h
vi3:
MOV ES,AX
PUSH ES
MOV AH,3
MOV BH,0
INT 10h
PUSH DX
MOV AH,2
XOR DX,DX
INT 10h
POP DX
MOV AH,8
INT 10h
POP ES
CMP AX,ES:[0]
MOV AH,2
JNE vi5
INT 10h
MOV AL,Ya
JMP vi6
vi5:
INT 10h
MOV AL,No
vi6:
MOV CS:[adrDataVideo].MIV.Direct,AL
JMP viN9
vi7:
MOV AH,1Bh
XOR BX,BX
PUSH CS
POP ES
MOV DI,Offset @viData
INT 10h
CMP AL,1Bh
JNE viBios
MOV AX,Word Ptr CS:[Offset @viData+27h]
CMP AX,2
JE viN9
MOV BX,AX
MOV AL,4
CMP BX,16
JE viN9
MOV AL,6
JE viN9
viBios:
XOR AX,AX
viN9:
INC AX
INC AX
RET
viInitVideo ENDP
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Table de comparaison des "SetVideoModes" du vid‚o primaire
; ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
@BaseCard:
DB indexProcSetVidModeMDAPrim ;vnUnknown: D‚tectection automatique
DB indexProcSetVidModeEGAPrim ;vnAhead: Ahead
DB indexProcSetVidModeAheadBPrim ;vnAheadB: Ahead B (SVGA)
DB indexProcSetVidModeAheadBPrim ;vnAheadBWizard3270: Ahead B-Wizard/3270 (SVGA)
DB indSVMAheadEGA2001Prim ;vnAheadEGA2001: Ahead EGA2001 (Super EGA)
DB indSVMAllStarPeacockPrim ;vnAllstarPeacock: Allstar Peacock (VGA)
DB indSVMASTVGAPlusPrim ;vnASTVGAPlus: AST VGA Plus (SVGA)
DB indexProcSetVidModeCGAPrim ;vnATT: AT&T
DB indexProcSetVidModeATT6300Prim ;vnATT6300: AT&T 6300 (Super EGA)
DB indexProcSetVidModeATTVDC600Prim ;vnATTVDC600: AT&T VDC600 (SVGA)
DB indexProcSetVidModeCardinalPrim ;vnCardinal: Cardinal (SVGA)
DB indexProcSetVidModeCGAPrim ;vnCGA: CGA
DB indexProcSetVidModeVGAPrim ;vnCirrus: Cirrus (SVGA)
DB indexProcSetVidModeCGAPrim ;vnCompaqPortable: Compaq Portable
DB indexProcSetVidModeVGAPrim ;vnCompaqVGA: Compaq VGA (SVGA)
DB indexProcSetVidModeVGAPrim ;vnCTI82C451: CTI 82C451 (SVGA)
DB indexProcSetVidModeVGAPrim ;vnCTI82C452: CTI 82C452 (SVGA)
DB indexProcSetVidModeVGAPrim ;vnDellVGA: Dell VGA (SVGA)
DB indexProcSetVidModeEGAPrim ;vnEGA: EGA
DB indexProcSetVidModeEGAWonderPrim ;vnEGAW800: EGA Wonder 800+ (Super EGA)
DB indexProcSetVidModeEGAWonderPrim ;vnEGAW800N18800: EGA Wonder 800+-18800 (Super EGA)
DB indexProcSetVidModeEGAWonderPrim ;vnEGAW800N18800_1: EGA Wonder 800+-18800-1 (Super EGA)
DB indexProcSetVidModeEGAWonderPrim ;vnEGAW800N28800_2: EGA Wonder 800+-28800-2 (Super EGA)
DB indexProcSetVidModeEGAWonderPrim ;vnEGAW800N28800_4: EGA Wonder 800+-28800-4 (Super EGA)
DB indexProcSetVidModeEGAWonderPrim ;vnEGAW800N28800_5: EGA Wonder 800+-28800-5 (Super EGA)
DB indexProcSetVidModeEverexPrim ;vnEverex: Everex
DB indexProcSetVidModeEverexPrim ;vnEverexViewPoint: Everex ViewPoint
DB indexProcSetVidModeEverexPrim ;vnEverexUG2: Everex UltraGraphics II
DB indexProcSetVidModeEverexPrim ;vnEverexVision: Everex Vision