@ -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.
from dataclasses import dataclass
import typing
This file holds Executable and LoadedExecutable classes as well as loading and some linking code.
This file holds the parser that parses the tokenizer output.
from .Config import RunConfig
import re
This package aims at providing an all-round usable RISC-V emulator and debugger
# Colors
from math import log10, ceil
from typing import Tuple, Callable, Dict
from .InstructionSet import *
This package holds all instruction sets, available to the processor