diff --git a/Cargo.lock b/Cargo.lock index d9d56db..709fdb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ dependencies = [ [[package]] name = "argentum-core" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bitflags", "log", @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "argentum-gb" -version = "0.2.0" +version = "0.3.0" dependencies = [ "argentum-core", "clap", diff --git a/Cargo.toml b/Cargo.toml index ae62df5..e4ead88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "argentum-gb" -version = "0.2.0" +version = "0.3.0" authors = ["Anish Jewalikar "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index 974aa39..58a9e42 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,10 @@ Argentum is certainly not perfect, but it supports the following features. - Passing blargg's CPU tests, instruction timing tests and memory timing tests. - Passing all of mooneye-gb timer (not timing!) tests. - PPU (scanline-based) which passes the dmg-acid2 PPU test. +- Good CGB Support (there are some glitches in Shantae but it mostly works). - MBC1 (no multicarts), MBC3 (no RTC) and MBC5 (no rumble) cartridges are supported. - Support for sound with all sound channels working as intended. -- Boot ROM support (right now only Bootix by Optix is supported). +- Boot ROM support (right now only Bootix by Optix is supported and also only for DMG). ## Resources diff --git a/README/Zelda.png b/README/Zelda.png index 5f583c6..babf07d 100644 Binary files a/README/Zelda.png and b/README/Zelda.png differ diff --git a/argentum-core/Cargo.toml b/argentum-core/Cargo.toml index cd20be8..7bb8ad9 100644 --- a/argentum-core/Cargo.toml +++ b/argentum-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "argentum-core" -version = "0.2.0" +version = "0.3.0" authors = ["Anish Jewalikar "] edition = "2018" license = "Apache-2.0"