-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c90d8d
commit d46aa5e
Showing
9 changed files
with
72 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,14 @@ | |
name = "cartridge" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Game Boy cartridge emulation with support for multiple mappers" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
sm83 = { path = "../sm83", version = "0.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,14 @@ | |
name = "ppu" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Game Boy PPU emulation" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
sm83 = { path = "../sm83", version = "0.1.0" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,14 @@ | |
name = "rb-disasm" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Game Boy Disassembler" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
rusty-boy = { path = "../rusty-boy" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,15 @@ | |
name = "rusty-boy-sdl" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Game Boy Emulator for desktop computers that uses SDL2 for graphics and events" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
cartridge = { path = "../cartridge" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,14 @@ | |
name = "rusty-boy" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Game Boy emulator" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
sm83 = { path = "../sm83", version = "0.1.0" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,14 @@ | |
name = "rusty-date" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Game Boy emulator for Playdate" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[package.metadata.cargo-xbuild] | ||
memcpy = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,14 @@ | |
name = "sm83" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "An sm83 core emulator for GameBoy" | ||
license = "MIT AND Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "SM83 CPU emulator, for Game Boy emulators" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
sm83_decoder_macros = { path = "../sm83_decoder_macros" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,14 @@ | |
name = "sm83_decoder_macros" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Macros for the SM83 Game Boy CPU emulator" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,14 @@ | |
name = "timer" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT AND Apache-2.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Javier Alvarez <[email protected]>"] | ||
description = "Emulator for the timer in a Game Boy" | ||
homepage = "https://github.com/Javier-varez/rusty-boy" | ||
repository = "https://github.com/Javier-varez/rusty-boy" | ||
categories = ["embedded", "gaming"] | ||
keywords = ["embedded", "gameboy", "playdate"] | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
sm83 = { path = "../sm83", version = "0.1.0" } | ||
|