SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
sys-wdt.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+ */
2
3#ifndef __SYS_WDT_H__
4#define __SYS_WDT_H__
5
6#include <io.h>
7#include <stdarg.h>
8#include <stdbool.h>
9#include <stddef.h>
10#include <stdint.h>
11#include <types.h>
12
13#include "log.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif// __cplusplus
18
25void sys_reset();
26
27#ifdef __cplusplus
28}
29#endif// __cplusplus
30
31#endif// __SYS_WDT_H__
void sys_reset()
Perform a system reset.
Definition sys-wdt.c:12