oboromi
a proof-of-concept project for a possible Nintendo Switch 2 emulator.
File Explorer
Download Latest Version (.zip)- bug_report.md
- feature_request.md
- .gitkeep
- build.yml
- ci.yml
- pr-review.yml
- release.yml
- security.yml
- PULL_REQUEST_TEMPLATE.md
- .gitkeep
- oboromi_logo.png
- .gitkeep
- oboromi_core.h
- .gitkeep
- mod.rs
- .gitkeep
- cpu_manager.rs
- mod.rs
- unicorn_interface.rs
- .gitkeep
- mod.rs
- .gitkeep
- mod.rs
- sm86.rs
- sm86_decoder_generated.rs
- spirv.rs
- auto.defs
- hipc.rs
- mod.rs
- mod.rs
- gpu_test.rs
- mod.rs
- multicore_test.rs
- run.rs
- ffi.rs
- lib.rs
- build.rs
- Cargo.toml
- cbindgen.toml
- .gitkeep
- sm86.pdf
- .gitkeep
- main.cpp
- MainWindow.cpp
- MainWindow.h
- RustBridge.cpp
- RustBridge.h
- resources.qrc
- .gitkeep
- decoder_generator.rs
- sm_86_instructions.txt
- sm_86_latencies.txt
- .gitignore
- .gitmodules
- Cargo.lock
- Cargo.toml
- CMakeLists.txt
- CONTRIBUTING.md
- license.txt
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/0xNikilite/oboromi
Downloads the entire project code from GitHub to your computer.
cd oboromi
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
3. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
