-
Notifications
You must be signed in to change notification settings - Fork 0
/
PRINT.PAS
126 lines (109 loc) · 4.38 KB
/
PRINT.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
(*******************************************************************)
(* *)
(* Unit‚ Imprimante *)
(* 1992/04/14 *)
(* *)
(* Programmeur : Sylvain Maltais *)
(* *)
(* Description : þ Gestion de l'imprimante (LPT1:). *)
(* *)
(* RequŠre : þ Turbo Pascal 6 ou post‚rieur. *)
(* þ Une Imprimante branch‚ sur LPT1:. *)
(* *)
(* Note : þ Cette unit‚ est a 100% autonome des autres *)
(* unit‚s. *)
(* *)
(*******************************************************************)
Unit Print;
(*******************************************************************)
Interface
(*******************************************************************)
Const
Return = #13 + #10;
PrnError : Byte = $00;
Procedure Prn(Chaine:String);
Procedure PrnLn(Chaine:String);
Function PrnChar(Char:Byte):Byte;
Function PrnReady:Byte;
(*******************************************************************)
Implementation
(*******************************************************************)
(*******************************************************************)
(* *)
(* Description : þ Imprime un seul caractŠre sur LPT1:. *)
(* Note : þ La fonction "ImprimeCaractere" retourne 1 si il *)
(* y eu erreur d'impression. *)
(* *)
(*******************************************************************)
Function PrnChar(Char:Byte):Byte;
Assembler;
ASM XOR AH,AH;
MOV AL,Char;
XOR DX,DX;
INT $17;
MOV AL,$01;
CMP AH,$90;
JE @@2;
JMP @@1;
@@1:XOR AL,AL;
@@2:
End;
(*******************************************************************)
(* *)
(* Description : þ Retourne l'‚tat de l'imprimante. *)
(* Note : þ La fonction "ImprimantePrete" retourne 1 si *)
(* l'imprimante est prˆte. *)
(* *)
(*******************************************************************)
Function PrnReady:Byte;
Assembler;
ASM MOV AH,$02;
XOR DX,DX;
INT $17;
XOR AL,AL;
CMP AH,$90;
JE @@1;
JMP @@2;
@@1:MOV AL,$01;
@@2:
End;
(*******************************************************************)
(* *)
(* Description : þ Imprime un chaine de caractere. *)
(* Note : þ La constante "ErreurImprimante" retourne le bon *)
(* fonctionnement de cette proc‚dure. *)
(* *)
(*******************************************************************)
Procedure Prn(Chaine:String);
Var I,J : Byte;
Begin
If(PrnReady = 1)Then
Begin
PrnError := 1-PrnReady;
I := Length(Chaine);
J := 1;
While(J<=I)do
Begin
PrnError := PrnChar(Byte(Chaine[J]));
Inc(J);
End;
End
else
PrnError := 1;
End;
(*******************************************************************)
(* *)
(* Description : þ Imprime un chaine de caractere, mais avec un *)
(* certaine diff‚rence de la proc‚dure "Imprime" *)
(* car il y a retour du chariot. *)
(* Note : þ La constante "ErreurImprimante" retourne le bon *)
(* fonctionnement de cette proc‚dure. *)
(* *)
(*******************************************************************)
Procedure PrnLn(Chaine:String);
Begin
Prn(Chaine+#13+#10);
End;
BEGIN
PrnError := 0;
END.