aboutsummaryrefslogtreecommitdiff
path: root/src/sbi
diff options
context:
space:
mode:
Diffstat (limited to 'src/sbi')
-rw-r--r--src/sbi/base.zig4
-rw-r--r--src/sbi/debug_console.zig4
-rw-r--r--src/sbi/error.zig4
-rw-r--r--src/sbi/sys_reset.zig4
4 files changed, 16 insertions, 0 deletions
diff --git a/src/sbi/base.zig b/src/sbi/base.zig
index b96add2..053d4dc 100644
--- a/src/sbi/base.zig
+++ b/src/sbi/base.zig
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2024 Himbeer <himbeer@disroot.org>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
const instructions = @import("../instructions.zig");
const sbierr = @import("error.zig");
diff --git a/src/sbi/debug_console.zig b/src/sbi/debug_console.zig
index 18274e0..91bf24b 100644
--- a/src/sbi/debug_console.zig
+++ b/src/sbi/debug_console.zig
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2024 Himbeer <himbeer@disroot.org>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
const std = @import("std");
const base = @import("base.zig");
diff --git a/src/sbi/error.zig b/src/sbi/error.zig
index ab66b78..5aaeb7d 100644
--- a/src/sbi/error.zig
+++ b/src/sbi/error.zig
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2024 Himbeer <himbeer@disroot.org>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
pub const SbiError = error{
Success,
Failed,
diff --git a/src/sbi/sys_reset.zig b/src/sbi/sys_reset.zig
index a5dde8c..aa410e5 100644
--- a/src/sbi/sys_reset.zig
+++ b/src/sbi/sys_reset.zig
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2024 Himbeer <himbeer@disroot.org>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
const base = @import("base.zig");
const instructions = @import("../instructions.zig");
const sbierr = @import("error.zig");