home *** CD-ROM | disk | FTP | other *** search
-
- 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;
-
-