summaryrefslogtreecommitdiff
path: root/asm/pit.h
diff options
context:
space:
mode:
Diffstat (limited to 'asm/pit.h')
-rw-r--r--asm/pit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/asm/pit.h b/asm/pit.h
index 0bec3c4..d020de1 100644
--- a/asm/pit.h
+++ b/asm/pit.h
@@ -16,10 +16,10 @@
#include <stdint.h>
/** Init PIT - 25 times a second*/
-void pit_init();
+void asm_pit_init();
/** install this interrupt handler to your Interrupt Vector Table */
-void pit_interrupt_handler();
+void asm_pit_tick();
/** get number of ticks */
-uint32_t pit_get_ticks();
+uint32_t asm_pit_get_ticks();