aboutsummaryrefslogtreecommitdiff
path: root/tasm
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-05-24 14:15:15 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-05-24 14:15:15 +0300
commitc771a678e382c6e37d5714231629de82476ab3ae (patch)
tree81dcde9da210f6cec4ebb30308f259b3a55b500a /tasm
parentf91a8c111830b83ca296f6752d47d0c2880b112b (diff)
downloadtri-c771a678e382c6e37d5714231629de82476ab3ae.tar.gz
tri-c771a678e382c6e37d5714231629de82476ab3ae.zip
add license stuff in tasm
Diffstat (limited to 'tasm')
-rw-r--r--tasm/include/tasm/assembler.h2
-rw-r--r--tasm/src/assembler.c2
-rw-r--r--tasm/src/main.c2
3 files changed, 6 insertions, 0 deletions
diff --git a/tasm/include/tasm/assembler.h b/tasm/include/tasm/assembler.h
index 6f162e4..0527cfc 100644
--- a/tasm/include/tasm/assembler.h
+++ b/tasm/include/tasm/assembler.h
@@ -1,3 +1,5 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+
#ifndef TASM_ASSEMBLER_H
#define TASM_ASSEMBLER_H
diff --git a/tasm/src/assembler.c b/tasm/src/assembler.c
index e9f82a8..d8b3ee6 100644
--- a/tasm/src/assembler.c
+++ b/tasm/src/assembler.c
@@ -1,3 +1,5 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+
#include <triscv/csr.h>
#include <tasm/assembler.h>
#include <tasm/parser.h>
diff --git a/tasm/src/main.c b/tasm/src/main.c
index 6304f2a..bca28e4 100644
--- a/tasm/src/main.c
+++ b/tasm/src/main.c
@@ -1,3 +1,5 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+
#include <tasm/assembler.h>
#include <stdlib.h>
#include <string.h>