diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:18:32 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:18:32 +0300 |
| commit | 79f67d5ca820b663e9e5682aaaad07118fdbfad8 (patch) | |
| tree | a6f8b61c4ffbd2b5ce973dd7d9f1d6ddb3f58d8c /include | |
| parent | d133cc70b125efc1d6c992cb49ce1bca41cf580e (diff) | |
| download | gran-79f67d5ca820b663e9e5682aaaad07118fdbfad8.tar.gz gran-79f67d5ca820b663e9e5682aaaad07118fdbfad8.zip | |
update license stuff
Diffstat (limited to 'include')
| -rw-r--r-- | include/gran/bus/simple_bus.h | 3 | ||||
| -rw-r--r-- | include/gran/clock_domain.h | 3 | ||||
| -rw-r--r-- | include/gran/common.h | 3 | ||||
| -rw-r--r-- | include/gran/component.h | 3 | ||||
| -rw-r--r-- | include/gran/cpu/riscv/simple_riscv32.h | 7 | ||||
| -rw-r--r-- | include/gran/mem/simple_mem.h | 3 | ||||
| -rw-r--r-- | include/gran/root.h | 3 |
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 |
