Export some functions that might be useful
[uccvend-snackrom.git] / ROM2 / chime.c
index 57c4630..e959c1a 100644 (file)
@@ -5,12 +5,12 @@ u8 chime_count;
 
 void chime() {
        /* called from the RTI interrupt, sees if we need to turn the chime on or
-        * off (chime would be on for N RTI cycles
+        * off (chime would be on for N RTI cycles)
         */
        if (chime_count) {
-               bset((void*)&_io_ports[M6811_PORTA], PORTA_CHIME);
+               chime_on();
                --chime_count;
        } else
-               bclr((void*)&_io_ports[M6811_PORTA], PORTA_CHIME);
+               chime_off();
 }
 

UCC git Repository :: git.ucc.asn.au