diff --git a/riscemu/CPU.py b/riscemu/CPU.py index 12fdc91..ab6f2fd 100644 --- a/riscemu/CPU.py +++ b/riscemu/CPU.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT This file contains the CPU logic (not the individual instruction sets). See instructions/InstructionSet.py for more info on them. diff --git a/riscemu/Config.py b/riscemu/Config.py index b710677..a362eaa 100644 --- a/riscemu/Config.py +++ b/riscemu/Config.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from dataclasses import dataclass diff --git a/riscemu/Exceptions.py b/riscemu/Exceptions.py index 4bba2c0..cfe4be8 100644 --- a/riscemu/Exceptions.py +++ b/riscemu/Exceptions.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ import typing diff --git a/riscemu/Executable.py b/riscemu/Executable.py index 0237251..176625a 100644 --- a/riscemu/Executable.py +++ b/riscemu/Executable.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT This file holds Executable and LoadedExecutable classes as well as loading and some linking code. diff --git a/riscemu/ExecutableParser.py b/riscemu/ExecutableParser.py index a06e85f..550fce0 100644 --- a/riscemu/ExecutableParser.py +++ b/riscemu/ExecutableParser.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT This file holds the parser that parses the tokenizer output. """ diff --git a/riscemu/MMU.py b/riscemu/MMU.py index 211df7c..5c3c735 100644 --- a/riscemu/MMU.py +++ b/riscemu/MMU.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from .Config import RunConfig diff --git a/riscemu/Registers.py b/riscemu/Registers.py index d45073b..2a58006 100644 --- a/riscemu/Registers.py +++ b/riscemu/Registers.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from .Config import RunConfig diff --git a/riscemu/Syscall.py b/riscemu/Syscall.py index 48db82f..0abfa0b 100644 --- a/riscemu/Syscall.py +++ b/riscemu/Syscall.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from dataclasses import dataclass diff --git a/riscemu/Tokenizer.py b/riscemu/Tokenizer.py index 6bc57bd..68be1ac 100644 --- a/riscemu/Tokenizer.py +++ b/riscemu/Tokenizer.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ import re diff --git a/riscemu/__init__.py b/riscemu/__init__.py index 2d7d251..7bf2073 100644 --- a/riscemu/__init__.py +++ b/riscemu/__init__.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT This package aims at providing an all-round usable RISC-V emulator and debugger diff --git a/riscemu/colors.py b/riscemu/colors.py index a08ebd1..8b5ddbb 100644 --- a/riscemu/colors.py +++ b/riscemu/colors.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ # Colors diff --git a/riscemu/debug.py b/riscemu/debug.py index f8fe134..5798c99 100644 --- a/riscemu/debug.py +++ b/riscemu/debug.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ diff --git a/riscemu/helpers.py b/riscemu/helpers.py index 0ff5606..5faadad 100644 --- a/riscemu/helpers.py +++ b/riscemu/helpers.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from math import log10, ceil diff --git a/riscemu/instructions/InstructionSet.py b/riscemu/instructions/InstructionSet.py index 2a620c2..f5d0f01 100644 --- a/riscemu/instructions/InstructionSet.py +++ b/riscemu/instructions/InstructionSet.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from typing import Tuple, Callable, Dict diff --git a/riscemu/instructions/RV32I.py b/riscemu/instructions/RV32I.py index fbb1186..20a64aa 100644 --- a/riscemu/instructions/RV32I.py +++ b/riscemu/instructions/RV32I.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from .InstructionSet import * diff --git a/riscemu/instructions/RV32M.py b/riscemu/instructions/RV32M.py index 5ffbcf4..bd0490f 100644 --- a/riscemu/instructions/RV32M.py +++ b/riscemu/instructions/RV32M.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT """ from .InstructionSet import * diff --git a/riscemu/instructions/__init__.py b/riscemu/instructions/__init__.py index be93449..fb6a17c 100644 --- a/riscemu/instructions/__init__.py +++ b/riscemu/instructions/__init__.py @@ -1,7 +1,7 @@ """ RiscEmu (c) 2021 Anton Lydike -SPDX-License-Identifier: BSD-2-Clause +SPDX-License-Identifier: MIT This package holds all instruction sets, available to the processor """