Skip to content

Commit 19dd8b4

Browse files
committed
update demo for terminal
1 parent a0d149d commit 19dd8b4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
88
| Web via WebAssembly | Desktop | Terminal |
99
| --- | --- | --- |
10-
| ![Demo Web with Assembly](resources/demo-web.png) | ![First demo desktop GUI](resources/demo-desktop-1.png) ![Second demo desktop GUI](resources/demo-desktop-2.png) | ![First terminal demo](resources/demo-terminal-1.png) |
11-
| Playing [Cookies Bakery by leafthief](https://leafthief.itch.io/cookies-bakery) | Playing [Unearthed by benjelter](https://benjelter.itch.io/unearthed) | Playing [Pokemon by Nintendo](https://en.wikipedia.org/wiki/Pok%C3%A9mon_Red,_Blue,_and_Yellow) |
12-
| Firefox 116.0.3 (64-bit) | macOS 11.6.2, 16GB, Quad-Core Intel Core i7, 1,2 GHz | Rio Terminal |
10+
| ![Demo Web with Assembly](resources/demo-web.png) | ![First demo desktop GUI](resources/demo-desktop-1.png) ![Second demo desktop GUI](resources/demo-desktop-2.png) | ![First terminal demo](resources/demo-terminal-1.png) ![Second terminal demo](resources/demo-terminal-2.png) |
11+
| Playing [Cookies Bakery by leafthief](https://leafthief.itch.io/cookies-bakery) | Playing [Unearthed by benjelter](https://benjelter.itch.io/unearthed) | Playing [The Machine by Ben Jelter](https://benjelter.itch.io/the-machine) |
12+
| Firefox 116.0.3 (64-bit) | macOS 11.6.2, 16GB, Quad-Core Intel Core i7, 1,2 GHz | Rio Terminal v0.2.2 |
1313
| `make web` | `make desktop` | `make terminal` |
1414

1515
## WebAssembly quick demo

examples/desktop/bin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use gameboy::gameboy::{load_rom, Gameboy, RenderMode::Desktop};
55
fn main() {
66
// TODO: Allow receive path by arguments
77
// let gb = Gameboy::new("./../../tests/cpu_instrs/cpu_instrs.gb");
8-
if let Ok((data, filepath)) = load_rom("./../pokemon-red.gb") {
8+
if let Ok((data, filepath)) = load_rom("./../the-machine.gb") {
99
// if let Ok((data, filepath)) = load_rom("./../bakery.gb") {
1010
let gb = Gameboy::new(data, Some(filepath));
1111
gb.render(Desktop);

examples/terminal/bin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use gameboy::gameboy::{load_rom, Gameboy, RenderMode::Terminal};
44

55
fn main() {
66
// TODO: Allow receive path by arguments
7-
if let Ok((data, filepath)) = load_rom("./../pokemon-red.gb") {
7+
if let Ok((data, filepath)) = load_rom("./../the-machine.gb") {
88
// if let Ok((data, filepath)) = load_rom("./../bakery.gb") {
99
let gb = Gameboy::new(data, Some(filepath));
1010
gb.render(Terminal);

resources/demo-terminal-1.png

-12.4 KB
Loading

resources/demo-terminal-2.png

311 KB
Loading

0 commit comments

Comments
 (0)