home *** CD-ROM | disk | FTP | other *** search
- main() /* outp.c -- demonstrates a use for outp() */
- /* care MUST be exercised in using poke and outp if you are to*/
- /* losing your program; having to re-boot or worse */
- {
- int i,j,k;
- j = 0;
- puts("A few notes from an electronic clarinet");
- outp(0x43,0xB7);
- for(i = 0; i < 100; ++i, ++j){
- outp(0x42,j);
- outp(0x61,0x4f);
- }
-
- j = 100;
- puts("I yearn for the high notes");
- for(k = 100; k > 1; --k, --j){
- outp(0x42,j);
- outp(0x61,0x4f);
- }
-
- outp(0x61,0x4d); /* disables speaker; otherwise noise continues */
- }