--- /dev/null
+/* This program allows your ears to hear whether or not\r
+ a program gets equal time while running with other programs\r
+ in MMURTL. Every half second, this beeps. That's all it does.\r
+\r
+To build this Beeper.RUN, use Makeit.bat in DOS, or CM32 and DASM:\r
+ CM32 Beeper.C\r
+ DASM Beeper.ATF\r
+*/\r
+\r
+#include "\OSSource\MTimer.h"\r
+#include "\OSSource\MKernel.h"\r
+#include "\OSSource\MJob.h"\r
+\r
+void main(void)\r
+{\r
+ SetJobName("Beeper", 6);\r
+ while (1) {\r
+ Sleep(50);\r
+ Tone(150,10);\r
+ }\r
+}\r