-
- Downloads
first commit
Showing
- .gitignore 4 additions, 0 deletions.gitignore
- Cargo.lock 1453 additions, 0 deletionsCargo.lock
- Cargo.toml 19 additions, 0 deletionsCargo.toml
- src/lib.rs 674 additions, 0 deletionssrc/lib.rs
- src/roms/all_instrs.nes 0 additions, 0 deletionssrc/roms/all_instrs.nes
- src/roms/nestest.nes 0 additions, 0 deletionssrc/roms/nestest.nes
- src/roms/official_only.nes 0 additions, 0 deletionssrc/roms/official_only.nes
.gitignore
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
[package] | |||
name = "tudelft-nes-test" | |||
version = "0.1.0" | |||
edition = "2021" | |||
authors = [ | |||
"Victor Roest <victor@xirion.net>", | |||
"Jonathan Dönszelmann <jonabent@gmail.com>", | |||
] | |||
description = "support library for the 'software fundamentals' project for the TU Delft" | |||
repository = "https://gitlab.ewi.tudelft.nl/software-fundamentals/nes-emulator-testing" | |||
keywords = ["NES", "tudelft"] | |||
categories = ["emulators", "development-tools::testing"] | |||
license = "MIT" | |||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |||
[dependencies] | |||
tudelft-nes-ppu = "1.0.3" | |||
thiserror = "1.0.32" |
src/lib.rs
0 → 100644
This diff is collapsed.
src/roms/all_instrs.nes
0 → 100644
File added
src/roms/nestest.nes
0 → 100644
File added
src/roms/official_only.nes
0 → 100644
File added
Please register or sign in to comment