-
Notifications
You must be signed in to change notification settings - Fork 0
/
FORMAT.PAS
709 lines (683 loc) · 19.7 KB
/
FORMAT.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
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2022
@website(https://www.gladir.com/pcdos-0)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program Format;
{$A-,F-,O-}
Uses DOS;
Const
{Adresse d'assembleur pour le micro-processeur Intel (Cpu Intel)}
ciBXnSI=$00;{®[BX+SI]¯,88+}
ciBXnDI=$01;{®[BX+DI]¯,88+}
ciBPnSI=$02;{®[BP+SI]¯,88+}
ciBPnDI=$03;{®[BP+DI]¯,88+}
ciSI=$04;{®[SI]¯,88+}
ciDI=$05;{®[DI]¯,88+}
ciBP=$06;{®[BP]¯,88+}
ciBX=$07;{®[BX]¯,88+}
{Instruction d'assembleur pour le micro-processeur Intel (Cpu Intel)}
ciAAA=$37;{®AAA¯,88+}
ciAAD_=$D5;{®AAD¯,88+}
ciAAM_=$D4;{®AAM¯,88+}
ciAAS=$3F;{®AAS¯,88+}
ciAdcAL_=$14;{®ADC AL,??h¯,286+}
ciAdcAX_=$15;{®ADC AX,????h¯,286+}
ciAddAL_=$04;{®ADD AL,??h¯,286+}
ciAddAX_=$05;{®ADD AX,????h¯,286+}
ciAndAL_=$24;{®AND AL,??h¯,286+}
ciAndAX_=$25;{®AND AX,????h¯,286+}
ciCallFarAbs=$9A;{®CALL FAR ????h:????h¯,88+}
ciCBW=$98;{®CBW¯,88+}
ciCC=$CC;{®INT 03h¯(Code Sp‚cial CCh),88+}
ciCLC=$F8;{®CLC¯,88+}
ciCLD=$FC;{®CLD¯,88+}
ciCLI=$FA;{®CLI¯,88+}
ciCMC=$F5;{®CMC¯,88+}
ciCmpAL_=$3C;{®CMP AL,??h¯,286+}
ciCmpAX_=$3D;{®CMP AX,????h¯,286+}
ciCmpSB=$A6;{®CMPSB¯,88+}
ciCmpSW=$A7;{®CMPSW¯,88+}
ciCS=$2E;{®CS¯,88+}
ciCWD=$99;{®CWD¯,88+}
ciDAA=$27;{®DAA¯,88+}
ciDAS=$2F;{®DAS¯,88+}
ciDecAX=$48;{®DEC AX¯,88+}
ciDecBP=$4D;{®DEC BP¯,88+}
ciDecBX=$4B;{®DEC BX¯,88+}
ciDecCX=$49;{®DEC CX¯,88+}
ciDecDI=$4F;{®DEC DI¯,88+}
ciDecDX=$4A;{®DEC DX¯,88+}
ciDecSI=$4E;{®DEC SI¯,88+}
ciDecSP=$4C;{®DEC SP¯,88+}
ciDS=$3E;{®DS¯,88+}
ciES=$26;{®ES¯,88+}
ciFS=$64;{®FS¯,386+}
ciGS=$65;{®GS¯,386+}
ciHLT=$F4;{®HLT¯,88+}
ciIncAX=$40;{®INC AX¯,88+}
ciIncBP=$45;{®INC BP¯,88+}
ciIncBX=$43;{®INC BX¯,88+}
ciIncCX=$41;{®INC CX¯,88+}
ciIncDI=$47;{®INC DI¯,88+}
ciIncDX=$42;{®INC DX¯,88+}
ciIncSI=$46;{®INC SI¯,88+}
ciIncSP=$44;{®INC SP¯,88+}
ciInsB=$6C;{®INSB¯,88+}
ciInsW=$6D;{®INSW¯,88+}
ciInt=$CD;{®INT ??h¯,88+}
ciIntO=$CE;{®INTO¯,88+}
ciIRet=$CF;{®IRET¯,88+}
ciJBE=$76;{®JBE ?¯,88+}
ciJC=$72;{®JC ?¯,88+}
ciJG=$7E;{®JG ?¯,88+}
ciJL=$7C;{®JL ?¯,88+}
ciJMP_Word=$E9;{®JMP ????¯,88+}
ciJNBE=$77;{®JNBE ?¯,88+}
ciJNC=$73;{®JNC ?¯,88+}
ciJNG=$7F;{®JNG ?¯,88+}
ciJNL=$7D;{®JNL ?¯,88+}
ciJNO=$71;{®JNO ?¯,88+}
ciJNP=$7B;{®JNP ?¯,88+}
ciJNS=$79;{®JNS ?¯,88+}
ciJNZ=$75;{®JNZ ?¯,88+}
ciJO=$70;{®JO ?¯,88+}
ciJP=$7A;{®JP ?¯,88+}
ciJS=$78;{®JS ?¯,88+}
ciJZ=$74;{®JZ ?¯,88+}
ciLAHF=$9F;{®LAHF¯,88+}
ciLAR=$020F;{®LAR¯,386+}
ciLeave=$C9;{®LEAVE¯,286+}
ciLDS=$C5;{®LDS reg,mem¯,88+}
ciLES=$C4;{®LES reg,mem¯,88+}
ciLFS=$B40F;{®LFS reg,mem¯,386+}
ciLGS=$B50F;{®LGS reg,mem¯,386+}
ciLock=$F0;{®LOCK ?¯,88+}
ciLODSB=$AC;{®LODSB¯,88+}
ciLODSD=$AD66;{®LODSD¯,386+}
ciLODSW=$AD;{®LODSW¯,88+}
ciLSL=$030F;{®LSL ?¯,386+}
ciLSS=$B20F;{®LSS reg,mem¯,386+}
ciMovAL_=$A0;{®MOV AL,[addr]¯,286+}
ciMovAL_Byte=$B0;{®MOV AL,??¯,88+}
ciMovAX_=$A1;{®MOV AX,[addr]¯,286+}
ciMovAX_Word=$B8;{®MOV AX,????¯, 88+}
ciMovAH_AL=$E08A;{®MOV AH,AL¯,88+}
ciMovBP_SP=$EC8B;{®MOV BP,SP¯,88+}
ciMovBX_CX=$D98B;{®MOV BX,CX¯,88+}
ciMovCX_BX=$CB8B;{®MOV CX,BX¯,88+}
ciMovDX_Word=$BA;{®MOV DX,????¯,88+}
ciMovEAX_ES_DI=$058B6626;{®MOV EAX,ES:[DI]¯,386+}
ciMovES_DI_EAX=$05896626;{®MOV ES:[DI],EAX¯,386+}
ciMovSB=$A4;{®MOVSB¯,88+}
ciMovSD=$A566;{®MOVSD¯,386+}
ciMovSW=$A5;{®MOVSW¯,88+}
ciNOP=$90;{®NOP¯,88+}
ciOutDX_AL=$EE;{®OUT DX,AL¯,88+}
ciOutDX_AX=$EF;{®OUT DX,AX¯,88+}
ciOutSB=$6E;{®OUTSB¯,286+}
ciOutSD=$6F66;{®OUTSD¯,386+}
ciOutSW=$6F;{®OUTSW¯,286+}
ciPopAX=$58;{®POP AX¯,88+}
ciPopBP=$5D;{®POP BP¯,88+}
ciPopBX=$5B;{®POP BX¯,88+}
ciPopCX=$59;{®POP CX¯,88+}
ciPopDX=$5A;{®POP DX¯,88+}
ciPopDI=$5F;{®POP DI¯,88+}
ciPopDS=$1F;{®POP DS¯,88+}
ciPopEAX=$5866;{®POP EAX¯,386+}
ciPopEBX=$5B66;{®POP EBX¯,386+}
ciPopECX=$5966;{®POP ECX¯,386+}
ciPopEDI=$66+(ciPopDI shl 8);{®PUSH EDI¯,386+}
ciPopEDX=$5A66;{®POP EDX¯,386+}
ciPopFS=$A10F;{®PUSH FS¯,386+}
ciPopGS=$A90F;{®PUSH GS¯,386+}
ciPopES=$07;{®POP ES¯,88+}
ciPopSI=$5E;{®POP SI¯,88+}
ciPopSP=$5C;{®POP SP¯,88+}
ciPopSS=$17;{®POP SS¯,88+}
ciPopA=$61;{®POPA¯,286+}
ciPopF=$9D;{®POPF¯,88+}
ciPushA=$60;{®PUSHA¯,286+}
ciPushAX=$50;{®PUSH AX¯,88+}
ciPushBP=$55;{®PUSH BP¯,88+}
ciPushBX=$53;{®PUSH BX¯,88+}
ciPushCS=$0E;{®PUSH CS¯,88+}
ciPushCX=$51;{®PUSH CX¯,88+}
ciPushDI=$57;{®PUSH DI¯,88+}
ciPushDS=$1E;{®PUSH DS¯,88+}
ciPushDX=$52;{®PUSH DX¯,88+}
ciPushEAX=$5066;{®PUSH EAX¯,386+}
ciPushEBX=$5366;{®PUSH EBX¯,386+}
ciPushECX=$5166;{®PUSH ECX¯,386+}
ciPushEDX=$5266;{®PUSH EDX¯,386+}
ciPushEDI=$66+(ciPushDI shl 8);{®PUSH EDI¯,386+}
ciPushES=$06;{®PUSH ES¯,88+}
ciPushFS=$A00F;{®PUSH FS¯,386+}
ciPushGS=$A80F;{®PUSH GS¯, 386+}
ciPushMemB=$6A;{®PUSH ??¯, 286+}
ciPushSI=$56;{®PUSH SI¯,88+}
ciPushSP=$54;{®PUSH SP¯,88+}
ciPushSS=$16;{®PUSH SS¯,88+}
ciPushF=$9C;{®PUSHF¯,88+}
ciRepNZ=$F2;{®REPNZ ?¯,88+}
ciRep=$F3;{®REP ?¯,88+}
ciRetF=$CB;{®RETF¯,88+}
ciRetN=$C3;{®RETN¯,88+}
ciRet=ciRetN;{®RETN¯ou®RETF¯,88+}
ciSAHF=$9E;{®SAHF¯,88+}
ciSbbAL_=$1C;{®SBB AL,??h¯,286+}
ciSbbAX_=$1D;{®SBB AX,????h¯,286+}
ciSCASB=$AE;{®SCASB¯,88+}
ciSCASD=$AF66;{®SCASS¯,386+}
ciSCASW=$AF;{®SCASW¯,88+}
ciSHR_AX_=$E8C1;{®SHR AX,?¯,88+}
ciSHR_CX_=$E9C1;{®SHR CX,?¯,88+}
ciSubAL_=$2C;{ ®SUB AL,??h¯,286+}
ciSubAX_=$2D;{®SUB AX,????h¯,286+}
ciSS=$36;{®SS¯,88+}
ciSTC=$F9;{®STC¯,88+}
ciSTD=$FD;{®STD¯,88+}
ciSTI=$FB;{®STI¯,88+}
ciSTOSB=$AA;{®STOSB¯,88+}
ciSTOSD=$AB66;{®STOSD¯,386+}
ciSTOSW=$AB;{®STOSW¯,88+}
ciXchgAXnBP=$95;{®XCHG AX,BP¯,88+}
ciXchgAXnBX=$93;{®XCHG AX,BX¯,88+}
ciXchgAXnCX=$91;{®XCHG AX,CX¯,88+}
ciXchgAXnDI=$97;{®XCHG AX,DI¯,88+}
ciXchgAXnDX=$92;{®XCHG AX,DX¯,88+}
ciXchgAXnSI=$96;{®XCHG AX,SI¯,88+}
ciXchgAXnSP=$94;{®XCHG AX,SP¯,88+}
ciXchgEAX_DS_SI=$048B663E;{®XCHG EAX,DS:[SI]¯,386+}
ciXlat=$D7;{®XLAT¯,88+}
ciXOR_=$81;{®XOR ?,?¯,88+}
ciXOR_AL_=$34;{®XOR AL,??h¯,286+}
ciXOR_AX_=$35;{®XOR AX,????h¯,286+}
Const
{Constante de type de disque (Interruption 13h)}
dtNoDrive=0;{Lecteur introuvable}
dtDD525=1;{Lecteur: 5,25" Double Densit‚}
dtHD525=2;{Lecteur: 5,25" Haute Densit‚}
dtDD35=3;{Lecteur: 3,5" Double Densit‚}
dtHD35=4;{Lecteur: 3,5" Haute Densit‚}
{Officieusement...}
dTryMax=5;{Nombre d'essais maximal}
Type
{Structure pour une piste double densit‚}
DdptType=Array[0..10]of Byte;
DdptPtr=^DdptType;
{ParamŠtres physiques de formatage}
PhysDataType=Record
Faces, {Nombre de faces demand‚}
Tracks, {Nombre Pistes par Face}
Sec:Byte; {Secteurs par Piste}
DDPT:DdptPtr; {Pointeur sur table paramŠtres du lecteur de disquette}
End;
Type
{ParamŠtres de formatage DOS}
LogDataType=Record
Media,Cluster,{Octet de support/Nombre Secteurs par Cluster}
FAT,RootSize:Byte;{Nombre Secteurs pour la FAT/Entr‚es dans le r‚pertoire racine}
End;
{Structure d'un tampon d'une piste logique de format DOS}
TrackBufType=Array[1..18,0..511]of Byte;{Tampon par piste}
(*Fonctions et Procedures:*)
{$IFDEF FPC}
Procedure DskReset;Begin
End;
{$ELSE}
Procedure DskReset;Assembler;ASM
MOV AH,00h
MOV DL,0
INT 13h
END;
{$ENDIF}
{$IFDEF FPC}
Function GetDrvType(Drive:Byte):Byte;Begin
End;
{$ELSE}
Function GetDrvType(Drive:Byte):Byte;Assembler;ASM
MOV AH,08h
MOV DL,Drive
INT 13h
JNC @Ok
MOV BL,dtDD525
@Ok:
XCHG AX,BX
END;
{$ENDIF}
Const
fCarry=$0001;
fParity=$0004;
fAuxiliary=$0010;
fZero=$0040;
fSign=$0080;
fOverflow=$0800;
Const
MaskBoot:Array[1..102]of Byte=
($EB,$35, { 0000 JMP 0037 }
ciNOP, { 0002 NOP }
{-- Donnees des BPB --------------------------------}
$50,$43,$2D,$4D,$41,$4C,$54,$45,
$00,$00,$00,$01,$00,$00,$00,$00,
$00,$00,$00,$00,$00,$00,$00,$00,
$00,$00,$00,$00,$00,$00,$00,$00,
$00,$00,$00,$00,$00,$00,$00,$00,
$00,$00,$00,$00,$00,$00,$00,$00,
$00,$00,$00,$00,
{-- Programme de chargement ----------------------}
ciCLI, { 0037 CLI }
$B8,$30,$00, { 0038 MOV AX,0030 }
$8E,$D0, { 003B MOV SS,AX }
$BC,$FC,$00, { 003D MOV SP,00FC }
ciSTI, { 0040 STI }
ciPushCS, { 0041 PUSH CS }
ciPopDS, { 0042 POP DS }
$BE,$66,$7C, { 0043 MOV SI,7C66 }
$B4,$0E, { 0046 MOV AH,0E }
ciCLD, { 0048 CLD }
ciLODSB, { 0049 LODSB }
$0A,$C0, { 004A OR AL,AL }
$74,$04, { 004C JZ 0052 }
ciInt,$10, { 004E INT 10 }
$EB,$F7, { 0050 JMP 0049 }
$B4,$01, { 0052 MOV AH,01 }
ciInt,$16, { 0054 INT 16 }
$74,$06, { 0056 JZ 005E }
$B4,$00, { 0058 MOV AH,00 }
ciInt,$16, { 005A INT 16 }
$EB,$F4, { 005C JMP 0052 }
$B4,$00, { 005E MOV AH,00 }
ciInt,$16, { 0060 INT 16 }
$33,$D2, { 0062 XOR DX,DX }
ciInt,$19); { 0064 INT 19 }
BootMsg:String=#13#10'FORMAT - corail'#13#10+
#13#10'Disquette non systeme ou defectueuse!'#13#10+
'Veuillez changer de disquette et taper une touche'#13#10;
DDPT360:DdptType=($DF,$02,$25,$02,$09,$2A,$FF,$50,$F6,$0F,$08);
DDPT1200:DdptType=($DF,$02,$25,$02,$0F,$1B,$FF,$54,$F6,$0F,$08);
DDPT720:DdptType=($DF,$02,$25,$02,$09,$2A,$FF,$50,$F6,$0F,$08);
DDPT1440:DdptType=($DF,$02,$25,$02,$12,$1B,$FF,$6C,$F6,$0F,$08);
LOG360:LogDataType=(Media:$FD;Cluster:2;FAT:2;RootSize:$70);
LOG1200:LogDataType=(Media:$F9;Cluster:1;FAT:7;RootSize:$E0);
LOG720:LogDataType=(Media:$F9;Cluster:2;FAT:3;RootSize:$70);
LOG1440:LogDataType=(Media:$F0;Cluster:1;FAT:9;RootSize:$E0);
PHYS360:PhysDataType=(Faces:2;Tracks:40;Sec:9;DDPT:@DDPT360);
PHYS1200:PhysDataType=(Faces:2;Tracks:80;Sec:15; DDPT:@DDPT1200);
PHYS1440:PhysDataType=(Faces:2;Tracks:80;Sec:18; DDPT:@DDPT1440);
PHYS720:PhysDataType=(Faces:2;Tracks:80;Sec:9;DDPT:@DDPT720);
Var
Language:(_French,_English,_Germany,_Italian,_Spain);
TmpLanguage:String;
AktDrv:Byte; { Numero de l'unite de disque a formater 0, 1 }
AktDrvType:Byte; { Type du lecteur de disquettes courant }
PData:PhysDataType;{ Informations physiques de formatage }
LData:LogDataType; { Informations logiques de formatage }
AncDDPT:Pointer; { Pointeur sur ancien DDPT }
Ok:Boolean; { Drapeau pour execution du programme }
EndCode:Word; { Valeur retournee au process appele }
Param:String; { pour evaluation de la ligne de commande }
FileImg:File;
InFile:Boolean;
KS:Word;
Function StrToUpper(S:String):String;
Var
I:Byte;
SLen:Byte Absolute S;
Begin
For I:=1to(SLen)do S[I]:=UpCase(S[I]);
StrToUpper:=S;
End;
Function Get4matParam(S:String;DrvType:Byte;Var PData:PhysDataType;Var LData:LogDataType):Boolean;
Begin
Get4matParam:=true;
If S='1200'Then
If(DrvType=dtHD525)Then Begin PData:=PHYS1200;LData:=LOG1200;End
Else Get4matParam:=false
Else
If S='360'Then
If(DrvType=dtHD525)or(DrvType=dtDD525)Then Begin PData:=PHYS360; LData:=LOG360; End
Else Get4matParam:=false
Else
If S='1440'Then
If(DrvType=dtHD35)Then Begin
PData:=PHYS1440;
LData:=LOG1440;
End
Else
Get4matParam:=false
Else
If S='720'Then
Begin
If StrToUpper(ParamStr(3))='/F'Then Begin
PData:=PHYS720;
LData:=LOG720;
End
Else
If(DrvType=dtHD35)or(DrvType=dtDD35)Then Begin
PData:=PHYS720;
LData:=LOG720;
End
Else
Get4matParam:=False
End
Else
Get4matParam:=false;
End;
Procedure InitDsk(Drive:Byte;PData:PhysDataType);
Var
_CH,_CL:Byte;
Begin
{$IFDEF FPC}
{$ELSE}
_CH:=PData.Tracks-1; _CL:=PData.Sec;
ASM
MOV AH,$18;
MOV CL,_CL;
MOV CH,_CH;
MOV DL,Drive;
INT $13;
END;
{$ENDIF}
End;
Function FormatTrack(Drv,Face,Track,Nm:Byte):Byte;
Type
FormatTyp=Record
DTrack,DFace,DI,DLen:Byte;
End;
Var
Regs:Registers;
AreaData:Array[1..18]of FormatTyp;
I,Try:Byte;
Begin
For I:=1to(Nm)do With AreaData[I]do Begin
DTrack:=Track;DFace:=Face;DI:=I;DLen:=2;
End;
Try:=dTryMax;
Repeat
With Regs do Begin
ah:=5;
al:=Nm;
es:=Seg(AreaData);
bx:=Ofs(AreaData);
dh:=Face;
dl:=Drv;
ch:=Track;
End;
Intr($13,Regs);
If Regs.flags and fcarry=1Then DskReset;
Dec(Try);
Until(Regs.flags and fcarry=0)or(Try=0);
Formattrack:=Regs.ah;
End;
Function VerifyTrack(Lecteur,Face,Piste,Secteurs:Byte):Byte;
Var
Try:Byte;
Regs:Registers;
TamponPiste:TrackBufType;
Begin
Try:=dTryMax;
Repeat
With Regs do Begin
ah:=$04; { Numero de fonction pour appel interruption }
al:=Secteurs; { Nombre Secteurs par Piste }
ch:=Piste; { Numero de Piste }
cl:=1; { Commencer par le secteur 1 }
dl:=Lecteur; { Numero de lecteur }
dh:=Face; { Numero de la face }
es:=Seg(TamponPiste); { Adresse du tampon }
bx:=Ofs(TamponPiste);
End;
Intr($13,Regs);
If Regs.flags and fcarry=1Then DskReset;
Dec(Try);
Until(Regs.flags and fcarry=0)or(Try=0);
VerifyTrack:=Regs.ah;
End;
Function WriteTrack(Lecteur,Face,Piste,Start,Nombre:Byte;Var Buffer):Byte;
Var
Essais:Byte;
Regs:Registers;
Begin
essais:=dTryMax;
Repeat
With Regs do Begin
ah:=$03; { Numero de fonction pour appel interruption }
al:=Nombre; { Nombre Secteurs par Piste }
ch:=Piste; { Numero de Piste }
cl:=Start; { Commencer par le secteur 1 }
dl:=Lecteur; { Numero de lecteur }
dh:=Face; { Numero de la face }
es:=Seg(Buffer);{ Adresse pour tampon }
bx:=Ofs(Buffer);
End;
Intr($13,Regs);
If Regs.flags and fcarry=1Then DskReset;
Dec(essais);
Until(Regs.flags and fcarry=0)or(Essais=0);
WriteTrack:=Regs.ah;
End;
Function Phys4mat(Drv:Byte;PData:PhysDataType;Verify:Boolean):Boolean;
Var
Try,T,F,Status:Byte;
Begin
For T:=0to PData.Tracks-1do For F:=0to PData.Faces-1do Begin
Write(#13'Piste : ',T:2,' Face : ',F:2);
Try:=dTryMax;
Repeat
Status:=FormatTrack(Drv,F,T,PData.Sec);
If Status=3Then Begin
Phys4mat:=false;
WriteLn;
WriteLn('Disquette protegee contre l''ecriture');
Exit;
End;
If(Status=0)and Verify Then Status:=VerifyTrack(Drv,F,T,PData.Sec);
Dec(Try);
If Status>0Then DskReset;
Until(Status=0)or(Try=0);
If Status>0Then Begin
Phys4mat:=false;
WriteLn;
WriteLn('Erreur de piste ?');
Exit;
End;
End;
Phys4mat:=true;
End;
Function Logical4mat(Drive:Byte;PData:PhysDataType;LData:LogDataType):Boolean;
Var
Status:Byte;
NmSec:Word;
I,AktSec,AktSide,AktTrack:Byte;
Nm:Integer;
TrackBuf:TrackBufType;
ByteWrited:Word;
Begin
FillChar(TrackBuf,Word(PData.Sec)*512,0); { Vide tampon }
{ Secteur de demarrage: Partie fixe }
System.Move(Maskboot,TrackBuf,102);
System.Move(BootMsg[1],TrackBuf[1,103],Byte(BootMsg[0]));
TrackBuf[1,511]:=$55;
TrackBuf[2,0]:=$AA;
{ Secteur de demarrage: Partie variable }
NmSec:=PData.Tracks*PData.Sec*Pdata.Faces;
TrackBuf[1,12]:=Lo(512);
TrackBuf[1,13]:=Hi(512);
TrackBuf[1,14]:=LData.Cluster; { Longueur de l'unite d'allocation }
TrackBuf[1,18]:=LData.RootSize; { Nombre Entrees dans répertoires }
TrackBuf[1,20]:=lo(NmSec); { Nombre total de secteur }
TrackBuf[1,21]:=hi(NmSec); { sur la disquette }
TrackBuf[1,22]:=LData.Media; { Descripteur support }
TrackBuf[1,23]:=LData.FAT; { Longueur des FAT }
TrackBuf[1,25]:=PData.Sec; { Secteurs par piste }
TrackBuf[1,27]:=PData.Faces; { Nombre de faces }
{ Creer FAT et sa copie (contient 00) }
TrackBuf[2,1]:=LData.Media;
TrackBuf[2,2]:=$FF;
TrackBuf[2,3]:=$FF;
TrackBuf[LData.FAT+2,1]:=LData.Media;
TrackBuf[LData.FAT+2,2]:=$FF;
TrackBuf[LData.FAT+2,3]:=$FF;
If(InFile)Then Begin
Seek(FileImg,0);
BlockWrite(FileImg,TrackBuf,Word(PData.Sec)*512,ByteWrited);
If ByteWrited=(Word(PData.Sec)*512)Then Status:=0
Else Status:=1;
End
Else
Status:=WriteTrack(Drive,0,0,1,PData.Sec,TrackBuf);
If Status<>0Then Logical4mat:=false
else
Begin
FillChar(TrackBuf,512,0);
AktSec:=PData.Sec; AktTrack:=0; AktSide:=0;
Nm:=LData.FAT*2+(LData.Rootsize*32div 512)+1-PData.Sec; I:=1;
Repeat
Inc(AktSec);
If(AktSec>PData.Sec)Then Begin
AktSec:=1; Inc(AktSide);
If(AktSide=PData.Faces)Then Begin
AktSide:=0;
Inc(AktTrack);
End;
End;
If(InFile)Then Begin
BlockWrite(FileImg,TrackBuf,512,ByteWrited);
If ByteWrited=512 Then Status:=0
Else Status:=1;
End
Else
Status:=WriteTrack(Drive,AktSide,AktTrack,AktSec,1,TrackBuf);
Inc(i);
Until(i>Nm)or(Status<>0);
Logical4mat:=Status=0;
End;
End;
BEGIN
Language:=_French;
TmpLanguage:=GetEnv('LANGUAGE');
If TmpLanguage<>''Then Begin
If TmpLanguage[1]='"'Then TmpLanguage:=Copy(TmpLanguage,2,255);
If StrToUpper(Copy(TmpLanguage,1,2))='EN'Then Language:=_English Else
If StrToUpper(Copy(TmpLanguage,1,2))='GR'Then Language:=_Germany Else
If StrToUpper(Copy(TmpLanguage,1,2))='IT'Then Language:=_Italian Else
If StrToUpper(Copy(TmpLanguage,1,2))='SP'Then Language:=_Spain;
End;
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
Case Language of
_Germany:Begin
WriteLn('Formate un disque pour une utilisation sous DOS.');
WriteLn;
WriteLn('FORMAT [A:|B:] [360|720|1200|1440] [NV] [/F]');
WriteLn('FORMAT Dateiname');
End;
_English:Begin
WriteLn('Formats a disk for use with DOS.');
WriteLn;
WriteLn('Syntax: FORMAT [A:|B:] [360|720|1200|1440] [NV] [/F]');
WriteLn(' FORMAT file');
End;
Else Begin
WriteLn('FORMAT - Cette commande permet de formater un unit‚ de disquette.');
WriteLn;
WriteLn('Syntaxe: FORMAT [A:|B:] [360|720|1200|1440] [NV] [/F]');
WriteLn(' FORMAT fichier');
WriteLn;
WriteLn('fichier Utiliser le fichier sp‚cifi‚ comme disquette');
WriteLn(' NV Pas de v‚rification');
WriteLn(' /F Force a utiliser ce format');
End;
End;
End
Else
If ParamCount>=1Then Begin
InFile:=False;
Param:=ParamStr(1);
If(Length(Param)=2)and(Param[2]=':')Then Begin
AktDrv:=Byte(UpCase(Param[1]))-65;
AktDrvType:=GetDrvType(AktDrv);
If AktDrvType>0Then Begin
If Get4matParam(ParamStr(2),AktDrvType,PData,LData)Then Begin
InitDsk(AktDrv,PData);
GetIntVec($1E,AncDDPT);
SetIntVec($1E,PData.DDPT);
Param:=ParamStr(3);
Ok:=Phys4mat(AktDrv,PData,UpCase(Param[1])<>'N');
If(Ok)Then Begin
WriteLn;
Writeln('Ecriture du secteur de demarrage et des FAT ');
Ok:=Logical4mat(AktDrv,PData,LData)
End;
If(Ok)Then Begin
WriteLn;
WriteLn('Formatage S.V.P.');
End
else
Begin
WriteLn;
WriteLn('Une erreur a interrompu le formatage');
Halt(1);
End;
SetIntVec($1E,AncDDPT);
End
else
Begin
WriteLn('Le format demande ne peut etre utilise sur cette unite de disque !');
Halt(2);
End;
End
Else
Begin
WriteLn('Le lecteur de disquettes demande n''existe pas');
Halt(3);
End
End
Else
Begin
InFile:=True;
KS:=1440;
WriteLn('Formatage du fichier d''image : ',Param);
{$I-}Assign(FileImg,Param);
Rewrite(FileImg,1);{$I+}
PData:=PHYS1440;
LData:=LOG1440;
Param:=ParamStr(2);
If Param<>''Then Begin
If Param='360'Then Begin
PData:=PHYS360;
LData:=LOG360;
KS:=360;
End
Else
If Param='720'Then Begin
PData:=PHYS720;
LData:=LOG720;
KS:=720;
End
Else
If Param='1200'Then Begin
PData:=PHYS1200;
LData:=LOG1200;
KS:=1200;
End
Else
If Param='1440'Then Begin
PData:=PHYS1440;
LData:=LOG1440;
KS:=1200;
End
End;
Seek(FileImg,0);
WriteLn('Ecriture du secteur de d‚marrage et des FAT');
Ok:=Logical4mat(AktDrv,PData,LData);
Seek(FileImg,KS*1024);
Truncate(FileImg);
Close(FileImg);
End;
End
Else
WriteLn('Parametre requis !')
END.