Skip to content
Snippets Groups Projects
Verified Commit 09180f57 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: initial working version

parent 28e52deb
No related branches found
No related tags found
No related merge requests found
.DS_Store
Cargo.lock
/.idea
/target
/examples/*/target
[package]
name = "boytacean"
version = "0.1.0"
authors = ["João Magalhães <joamag@gmail.com>"]
description = "Game Boy in Rust"
license = "Apache"
keywords = ["gameboy", "emulator", "rust"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
wasm = ["wasm-bindgen"]
[dependencies]
wasm-bindgen = { version = "0.2", optional = true }
[profile.release]
debug = false
lto = true
opt-level = 3
File added
pub struct Cpu {
reg_a: u8,
reg_b: u8,
reg_c: u8,
}
pub mod cpu pub mod cpu;
pub mod gb pub mod gb;
pub mod mmu pub mod mmu;
pub mod ppu pub mod ppu;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment