added singleton getInstance documentation

This commit is contained in:
black
2025-07-06 15:25:23 +02:00
parent 06af1ed6c6
commit 5e45b71b8e
8 changed files with 385 additions and 0 deletions

16
CMakeLists.txt Normal file
View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.31)
project(riscv_emulator)
set(CMAKE_CXX_STANDARD 14)
add_executable(riscv_emulator
src/main.cpp
src/components/Register.cpp
src/components/Register.h
src/components/Memory.cpp
src/components/Memory.h
src/Manager.cpp
src/Manager.h
src/loader/CommandParser.cpp
src/loader/CommandParser.h
)