From 1ee41a489d387a67d56723415763b9ab0160a047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kyle=20J=C2=A0Cardoza?= Date: Mon, 8 Jul 2024 23:35:17 -0400 Subject: [PATCH] Documentation of kernel API --- doc/syscalls.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/syscalls.md b/doc/syscalls.md index ac66bb9..035d6a5 100644 --- a/doc/syscalls.md +++ b/doc/syscalls.md @@ -210,11 +210,13 @@ Return Values: Argument Structure: +``` struct { uint8_t hour; // 0..23 uint8_t minute; // 0..59 uint8_t second; // 0..59 }; +``` This call sets the current time from the provided argument structure.