summaryrefslogtreecommitdiff
path: root/asm/pit.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-02 00:08:42 +0200
committerMiguel <m.i@gmx.at>2018-09-02 00:08:42 +0200
commit8e3411139b27a3421e9ac75c13f14f99f6dd3137 (patch)
treecf8b53ab02863117c310bde11ee4683e134cf1b2 /asm/pit.h
parent0fff2e6dc6fae82da1c7978918a490c25cc36f04 (diff)
syscalls
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();