Appendix A

Clock

A fully working clock can be incorporated into a program using the following code...

gCLOCK ON, mode%

If 6 is put in mode% you will get a medium sized clock and the type depends on the system setting. 7 will give a black and grey, medium sized analogue clock. 8 gives a medium sized digital clock and 9 gives an extra large clock.

PROC clock:
 gAT 10,20
 gCLOCK ON,9
 GET
ENDP


Back to Index