Add SPDX license identifiers

Add license information to files. Mostly automated with:

    find src/ -name '*.[c,h]' | xargs sed -i '1s,^,// SPDX-License-Identifier: GPL-3.0-only\n\n,'
    find src/ -name '*.mk' | xargs sed -i '1s,^,# SPDX-License-Identifier: GPL-3.0-only\n\n,'
This commit is contained in:
Tim Crawford
2020-09-17 06:47:11 -06:00
committed by Jeremy Soller
parent def5821b01
commit 5fd9df0ed0
202 changed files with 402 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only
#include <8051.h>
#include <arch/arch.h>

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-only
CC=sdcc -mmcs51 --model-large --Werror
OBJ=$(patsubst src/%.c,$(BUILD)/%.rel,$(SRC))

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only
// Uses timer 1 to implement delays
#include <8051.h>

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only
#ifndef _ARCH_ARCH_H
#define _ARCH_ARCH_H

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only
#ifndef _ARCH_DELAY_H
#define _ARCH_DELAY_H

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only
#ifndef _ARCH_TIME_H
#define _ARCH_TIME_H

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only
// Uses timer 0 to keep track of global time
#include <8051.h>