home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
elan
/
clock
/
cldc.eln
next >
Wrap
Text File
|
1988-10-11
|
744b
|
35 lines
PACKET display characters DEFINES show:
PROC show (INT CONST n1, TEXT CONST sep, INT CONST n2):
move to display position;
put 2 digits (n1);
put separator (sep);
put 2 digits (n2)
ENDPROC show;
PROC show (INT CONST n, TEXT CONST sep):
move to display position;
put 2 digits (n);
put separator (sep);
clear last 2 positions.
clear last 2 positions:
go to next position;
go to next position.
ENDPROC show;
PROC show (TEXT CONST sep, INT CONST n):
move to display position;
clear first 2 positions;
put separator (sep);
put 2 digits (n).
clear first 2 positions:
go to next position;
go to next position.
ENDPROC show;
ENDPACKET display characters;