home *** CD-ROM | disk | FTP | other *** search
- #INCLUDE <bbc.h>
- /* This was written using The Serial Port's C Interpreter, and so I am not
- * sure which header files need to be included */
- main()
- {
- int start,finish,x,pause;
- start=0;
- finish=1250;
- bbc_mode(15);
- bbc_cursor(0);
- for(x=0; x!=126; x++)
- {
- bbc_gcol(0, x);
- bbc_rectanglefill(start,(x*5),finish,5);
- pause=bbc_inkey(3);
- start=start+5;
- finish=finish-10;
- }
- }
-