aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/gran/bus/simple_bus.h3
-rw-r--r--include/gran/clock_domain.h3
-rw-r--r--include/gran/common.h3
-rw-r--r--include/gran/component.h3
-rw-r--r--include/gran/cpu/riscv/simple_riscv32.h7
-rw-r--r--include/gran/mem/simple_mem.h3
-rw-r--r--include/gran/root.h3
7 files changed, 24 insertions, 1 deletions
diff --git a/include/gran/bus/simple_bus.h b/include/gran/bus/simple_bus.h
index c569e8a..41a8d2e 100644
--- a/include/gran/bus/simple_bus.h
+++ b/include/gran/bus/simple_bus.h
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_SIMPLE_BUS_H
#define GRAN_SIMPLE_BUS_H
diff --git a/include/gran/clock_domain.h b/include/gran/clock_domain.h
index 9fb04a4..1feb3ac 100644
--- a/include/gran/clock_domain.h
+++ b/include/gran/clock_domain.h
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_CLOCK_DOMAIN_H
#define GRAN_CLOCK_DOMAIN_H
diff --git a/include/gran/common.h b/include/gran/common.h
index b4b8978..b71417d 100644
--- a/include/gran/common.h
+++ b/include/gran/common.h
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_COMMON_H
#define GRAN_COMMON_H
diff --git a/include/gran/component.h b/include/gran/component.h
index 498d7c0..15dc875 100644
--- a/include/gran/component.h
+++ b/include/gran/component.h
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_COMPONENT_H
#define GRAN_COMPONENT_H
diff --git a/include/gran/cpu/riscv/simple_riscv32.h b/include/gran/cpu/riscv/simple_riscv32.h
index 054c76d..3cbd842 100644
--- a/include/gran/cpu/riscv/simple_riscv32.h
+++ b/include/gran/cpu/riscv/simple_riscv32.h
@@ -1,8 +1,13 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_SIMPLE_RISCV32
#define GRAN_SIMPLE_RISCV32
#include <gran/component.h>
-struct component *create_simple_riscv32(uint32_t start_pc, struct component *imem, struct component *dmem);
+struct component *create_simple_riscv32(uint32_t start_pc,
+ struct component *imem,
+ struct component *dmem);
#endif /* GRAN_SIMPLE_RISCV */
diff --git a/include/gran/mem/simple_mem.h b/include/gran/mem/simple_mem.h
index 984dbf6..8d6ce75 100644
--- a/include/gran/mem/simple_mem.h
+++ b/include/gran/mem/simple_mem.h
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_SIMPLE_MEM_H
#define GRAN_SIMPLE_MEM_H
diff --git a/include/gran/root.h b/include/gran/root.h
index 32ca1cf..7126bf3 100644
--- a/include/gran/root.h
+++ b/include/gran/root.h
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#ifndef GRAN_ROOT_H
#define GRAN_ROOT_H