riscemu.config module

RiscEmu (c) 2021-2022 Anton Lydike

SPDX-License-Identifier: MIT

class riscemu.config.RunConfig(stack_size: int = 524288, include_scall_symbols: bool = True, add_accept_imm: bool = False, debug_instruction: bool = True, debug_on_exception: bool = True, scall_input: bool = True, scall_fs: bool = False, verbosity: int = 0, slowdown: float = 1, unlimited_registers: bool = False, use_libc: bool = False, ignore_exit_code: bool = False)

Bases: object

stack_size: int = 524288
include_scall_symbols: bool = True
add_accept_imm: bool = False
debug_instruction: bool = True
debug_on_exception: bool = True
scall_input: bool = True
scall_fs: bool = False
verbosity: int = 0
slowdown: float = 1
unlimited_registers: bool = False
use_libc: bool = False
ignore_exit_code: bool = False
__init__(stack_size: int = 524288, include_scall_symbols: bool = True, add_accept_imm: bool = False, debug_instruction: bool = True, debug_on_exception: bool = True, scall_input: bool = True, scall_fs: bool = False, verbosity: int = 0, slowdown: float = 1, unlimited_registers: bool = False, use_libc: bool = False, ignore_exit_code: bool = False) None