-
Notifications
You must be signed in to change notification settings - Fork 0
/
HD.PAS
110 lines (103 loc) · 2.87 KB
/
HD.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
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2022
@website(https://www.gladir.com/freebsd-0)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program HD;
Var
Option:(_None,_Offset);
ModeAztecC86:Boolean;
I:Integer;
ByteReaded:Integer;
Err:Word;
StartPos,CurrPos:LongInt;
FileView:File;
FileName:String;
Buffer:Array[0..255]of Byte;
Function StrToUpper(S:String):String;
Var
I:Byte;
Begin
For I:=1 to Length(S)do Begin
If S[I] in['a'..'z']Then S[I]:=Chr(Ord(S[I])-32);
End;
StrToUpper:=S;
End;
Function ByteHex2Str(value:Byte):String;
Const
matrix:Array[0..15]of Char = ('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
Begin
ByteHex2Str:=matrix[(value shr 4) and $0F]+matrix[value and $F];
End;
Function HexWord2Str(value:Word):String;Begin
HexWord2Str:=ByteHex2Str(Hi(value))+ByteHex2Str(Lo(value));
End;
Function LongHex2Str(value:LongInt):String;
Begin
LongHex2Str:=ByteHex2Str((value shr 24)and $FF)+
ByteHex2Str((value shr 16)and $FF)+
ByteHex2Str((value shr 8)and $FF)+
ByteHex2Str(value and $FF);
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('HD : Cette commande permet d''afficher le contenu d''un fichier en format hexadecimal.');
WriteLn;
WriteLn('Syntaxe : HD fichier [option]');
WriteLn;
WriteLn(' fichier Nom du fichier a afficher');
WriteLN(' /AZTECC86 Mode de compatibilite Aztec C86');
WriteLn(' -s deplacement Deplacement d''octets a partir du debut');
WriteLn;
End
Else
Begin
ModeAztecC86:=False;
Option:=_None;
StartPos:=0;
FileName:='';
For I:=1 to ParamCount do Begin
If Option=_Offset Then Begin
Option:=_None;
Val(ParamStr(I),StartPos,Err);
End
Else
If StrToUpper(ParamStr(I))='/AZTECC86'Then ModeAztecC86:=True Else
If ParamStr(I)='-s'Then Option:=_Offset
Else FileName:=ParamStr(I);
End;
CurrPos:=0;
If FileName=''Then Begin
WriteLn('Fichier requis !');
End
Else
Begin
Assign(FileView,FileName);
Reset(FileView,1);
Seek(FileView,StartPos);
While Not EOF(FileView)do Begin
BlockRead(FileView,Buffer,16,ByteReaded);
If(ModeAztecC86)Then Write(Copy(LongHex2Str(CurrPos),4,5),' ')
Else Write(LongHex2Str(CurrPos),' ');
For I:=0 to 15 do Begin
If I>=ByteReaded Then Write(' ':3)
Else Write(ByteHex2Str(Buffer[I]),' ');
If Not(ModeAztecC86)Then Begin
If I=7Then Write(' ');
End;
End;
If Not(ModeAztecC86)Then Write(' |');
For I:=0 to 15 do Begin
If I>=ByteReaded Then Write(' ')Else
If Buffer[I]<32Then Write(' ')
Else Write(Char(Buffer[I]));
End;
If Not(ModeAztecC86)Then Write('|');
WriteLn;
Inc(CurrPos,ByteReaded);
End;
Close(FileView);
End;
End;
END.