diff --git a/system.c b/system.c index 86b3b67..8d1e06a 100644 --- a/system.c +++ b/system.c @@ -5,7 +5,7 @@ volatile uint64_t ticks; __attribute__((interrupt)) void sys_tick_handler(void); -void sys_tick_handler(void) { ticks++; } +void sys_tick_handler(void) { ticks++; } uint64_t sys_ticks_get(void) { return ticks; } diff --git a/system.h b/system.h index 9f86a9b..4bf639f 100644 --- a/system.h +++ b/system.h @@ -1,7 +1,6 @@ #pragma once #include -// void sys_tick_handler(void); uint64_t sys_get_ticks(void); void sys_tick_setup(void); uint64_t sys_ticks_get(void);