diff --git a/README.md b/README.md index 366d19f..d41137e 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,8 @@ See also [crates matching keyword 'emulator'](https://crates.io/keywords/emulato * [mvdnes/rboy](https://github.com/mvdnes/rboy) — [![build badge](https://api.travis-ci.org/mvdnes/rboy.svg?branch=master)](https://travis-ci.org/mvdnes/rboy) * Gameboy Advance * [michelhe/rustboyadvance-ng](https://github.com/michelhe/rustboyadvance-ng) - RustboyAdvance-ng is a Gameboy Advance emulator with desktop, android and [WebAssembly](https://michelhe.github.io/rustboyadvance-ng/) support. [![build badge](https://github.com/michelhe/rustboyadvance-ng/workflows/Deploy/badge.svg?branch=master)](https://github.com/michelhe/rustboyadvance-ng/actions?query=workflow%3ADeploy) +* Intel 8080 CPU + * [mohanson/i8080](https://github.com/mohanson/i8080) — Intel 8080 cpu emulator by Rust * NES * [koute/pinky](https://github.com/koute/pinky) — [![build badge](https://api.travis-ci.org/koute/pinky.svg?branch=master)](https://travis-ci.org/koute/pinky) * [pcwalton/sprocketnes](https://github.com/pcwalton/sprocketnes) diff --git a/src/main.rs b/src/main.rs index fa5e24d..7101a45 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,6 +26,8 @@ fn override_stars(level: u32, text: &str) -> Option { Some(0) } else if level == 3 && text.contains("Games") { Some(40) + } else if level == 3 && text.contains("Emulators") { + Some(40) } else { None }