From 28d7841a8c7f8e5a75df76e34f534e3234cd7f58 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 16 Jul 2025 18:23:26 +0200 Subject: [PATCH] Yeet --- system.c | 2 +- system.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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);