fixed errorneous license text in headers

This commit is contained in:
Anton Lydike 2021-04-23 21:28:57 +02:00
parent a276638f57
commit f5f41f4e18
17 changed files with 17 additions and 17 deletions

View File

@ -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.

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from dataclasses import dataclass

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
import typing

View File

@ -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.

View File

@ -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.
"""

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from .Config import RunConfig

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from .Config import RunConfig

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from dataclasses import dataclass

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
import re

View File

@ -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

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
# Colors

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from math import log10, ceil

View File

@ -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

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from .InstructionSet import *

View File

@ -1,7 +1,7 @@
"""
RiscEmu (c) 2021 Anton Lydike
SPDX-License-Identifier: BSD-2-Clause
SPDX-License-Identifier: MIT
"""
from .InstructionSet import *

View File

@ -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
"""