├── .gitignore ├── .travis.yml ├── COPYRIGHT ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE2.0 ├── LICENSE-MIT ├── README.md └── src ├── cpu ├── cpu_tests.rs ├── instructions.rs └── mod.rs ├── main.rs ├── memory.rs └── rom └── mod.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /rls 2 | /target 3 | **/*.rs.bk 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "barnacleboy" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/LICENSE-APACHE2.0 -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/README.md -------------------------------------------------------------------------------- /src/cpu/cpu_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/src/cpu/cpu_tests.rs -------------------------------------------------------------------------------- /src/cpu/instructions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/src/cpu/instructions.rs -------------------------------------------------------------------------------- /src/cpu/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/src/cpu/mod.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/src/memory.rs -------------------------------------------------------------------------------- /src/rom/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repnop/barnacleboy/HEAD/src/rom/mod.rs --------------------------------------------------------------------------------