From bc0153eb0a05725c9ccfd7a18ca446eea1fd7477 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Mon, 30 Dec 2024 12:40:19 -0500 Subject: kernel: Add halt() --- kernel/include/kernel/halt.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 kernel/include/kernel/halt.h (limited to 'kernel/include') diff --git a/kernel/include/kernel/halt.h b/kernel/include/kernel/halt.h new file mode 100644 index 0000000..5735a06 --- /dev/null +++ b/kernel/include/kernel/halt.h @@ -0,0 +1,24 @@ +/* + * CMOS + * Copyright (C) 2024 Raghuram Subramani + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __kernel_halt_h +#define __kernel_halt_h + +void halt(void); + +#endif -- cgit v1.2.3