diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-05-24 14:10:33 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-05-24 14:13:39 +0300 |
| commit | 0ff388a7fcd108f75ca82a94d5b258079c6bf437 (patch) | |
| tree | 0259010e8348b55dc8923159b1b9e13c0deff6ff /triscv/src | |
| parent | a10ac4e82a1f8324a2928fd08b0ba2d5558e50e4 (diff) | |
| download | tri-0ff388a7fcd108f75ca82a94d5b258079c6bf437.tar.gz tri-0ff388a7fcd108f75ca82a94d5b258079c6bf437.zip | |
add licensing stuff in triscv
Diffstat (limited to 'triscv/src')
| -rw-r--r-- | triscv/src/common.c | 2 | ||||
| -rw-r--r-- | triscv/src/cpu.c | 2 | ||||
| -rw-r--r-- | triscv/src/main.c | 2 | ||||
| -rw-r--r-- | triscv/src/mem.c | 2 | ||||
| -rw-r--r-- | triscv/src/mmu.c | 2 | ||||
| -rw-r--r-- | triscv/src/tmb.c | 2 | ||||
| -rw-r--r-- | triscv/src/uart.c | 2 |
7 files changed, 14 insertions, 0 deletions
diff --git a/triscv/src/common.c b/triscv/src/common.c index e73d76e..f8bdbf6 100644 --- a/triscv/src/common.c +++ b/triscv/src/common.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <triscv/common.h> static const char *err_strs[] = { diff --git a/triscv/src/cpu.c b/triscv/src/cpu.c index 59ba238..565d4ca 100644 --- a/triscv/src/cpu.c +++ b/triscv/src/cpu.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <triscv/cpu.h> #include <triscv/mmu.h> #include <triscv/csr.h> diff --git a/triscv/src/main.c b/triscv/src/main.c index 2d23af7..72065dc 100644 --- a/triscv/src/main.c +++ b/triscv/src/main.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <limits.h> #include <stdlib.h> #include <unistd.h> diff --git a/triscv/src/mem.c b/triscv/src/mem.c index 9c77e95..9ce2a68 100644 --- a/triscv/src/mem.c +++ b/triscv/src/mem.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <triscv/mem.h> #include <string.h> diff --git a/triscv/src/mmu.c b/triscv/src/mmu.c index 1b35961..000e16c 100644 --- a/triscv/src/mmu.c +++ b/triscv/src/mmu.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <triscv/mmu.h> #include <triscv/csr.h> diff --git a/triscv/src/tmb.c b/triscv/src/tmb.c index 3f6c037..950c9bf 100644 --- a/triscv/src/tmb.c +++ b/triscv/src/tmb.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <triscv/tmb.h> struct map { diff --git a/triscv/src/uart.c b/triscv/src/uart.c index aa4b0bd..abb2fe5 100644 --- a/triscv/src/uart.c +++ b/triscv/src/uart.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ + #include <triscv/uart.h> #include <utf9.h> |
