Skip to content

Commit

Permalink
"First" commit
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikpersson committed Sep 27, 2022
0 parents commit 61f57a8
Show file tree
Hide file tree
Showing 63 changed files with 58,740 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
.DS_Store
/legal-roms
12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[submodule "6502_65C02_functional_tests"]
path = test-roms/6502_65C02_functional_tests
url = git@github.com:amb5l/6502_65C02_functional_tests.git
[submodule "nes-test-roms"]
path = test-roms/nes-test-roms
url = git@github.com:christopherpow/nes-test-roms.git
[submodule "test-roms/nes-test-roms"]
path = test-roms/nes-test-roms
url = git@github.com:christopherpow/nes-test-roms.git
[submodule "test-roms/6502_65C02_functional_tests"]
path = test-roms/6502_65C02_functional_tests
url = git@github.com:amb5l/6502_65C02_functional_tests.git
303 changes: 303 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[workspace]
members = ["common", "mos6502", "nes", "nes-sdl"]

[profile.test]
opt-level = 3 # Otherwise integration tests take too long
Loading

0 comments on commit 61f57a8

Please sign in to comment.