From c8070bd80062c72986c61027bcb8bf99c28c54cd Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Thu, 8 Aug 2019 09:04:19 +0200 Subject: [PATCH] Add license information to headers and build files --- meson.build | 2 ++ meson_options.txt | 2 ++ src/iset.h | 3 +++ src/regs.h | 3 +++ src/reorder.h | 3 +++ 5 files changed, 13 insertions(+) diff --git a/meson.build b/meson.build index 0eac887..0e66038 100644 --- a/meson.build +++ b/meson.build @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: 0BSD + project('coda-bits', 'c', version : '0.1', license : '0BSD') diff --git a/meson_options.txt b/meson_options.txt index cf07c5b..d4db5af 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: 0BSD + option('docs', type: 'boolean', value: false, diff --git a/src/iset.h b/src/iset.h index 02c9b8b..544c3de 100644 --- a/src/iset.h +++ b/src/iset.h @@ -1,3 +1,6 @@ +/* CODA BIT processor instruction set + * SPDX-License-Identifier: 0BSD + */ #ifndef __ISET_H__ #define __ISET_H__ diff --git a/src/regs.h b/src/regs.h index 63c65a9..c033acc 100644 --- a/src/regs.h +++ b/src/regs.h @@ -1,3 +1,6 @@ +/* CODA register layout + * SPDX-License-Identifier: 0BSD + */ #ifndef __REGS_H__ #define __REGS_H__ diff --git a/src/reorder.h b/src/reorder.h index 786c34c..8d1b677 100644 --- a/src/reorder.h +++ b/src/reorder.h @@ -1,3 +1,6 @@ +/* CODA host memory layout to BIT processor layout reordering code + * SPDX-License-Identifier: 0BSD + */ #ifndef __REORDER_H__ #define __REORDER_H__