Skip to content

Commit fc3fd4c

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 5286c44 + cdd0f83 commit fc3fd4c

31 files changed

Lines changed: 1823 additions & 384 deletions

File tree

Makefile.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ args = ["test", "--workspace", "--exclude", "iepass", "--exclude", "iepass-calib
4040
# Running
4141
[tasks.run]
4242
dependencies = ["build-assets"]
43-
cwd = "./iepass-emu"
4443
command = "cargo"
45-
args = ["run", "${@}"]
44+
args = ["run", "--package", "iepass-emu", "${@}"]
4645

4746
[tasks.flash]
4847
dependencies = ["build-assets"]

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,17 @@ IE Pass - The Console The Pass
2424
$ cargo make build
2525
```
2626

27-
### Run Tests:
27+
### Run Emulator:
2828
```bash
29-
$ cargo make test
29+
$ cargo make run -- path/to/cart.p8
3030
```
3131

32-
### Build and flash:
32+
### Build and flash for ESP32-S3:
3333
```bash
3434
$ cargo make flash
3535
```
36+
37+
### Run Tests:
38+
```bash
39+
$ cargo make test
40+
```

iepass/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ async fn try_main(spawner: Spawner) -> Result<!> {
165165

166166
let mut pico8 = P8rs::new_in(&PSRAM_ALLOCATOR)?;
167167

168-
info!("Loading hello.lua");
168+
info!("Loading hello.p8");
169169

170-
pico8.load(include_bytes!("../../lua/hello.lua"))?;
170+
pico8.load(include_bytes!("../../lua/hello.p8"))?;
171171

172172
info!("Entering main loop.");
173173

lua/cart.p8

Lines changed: 0 additions & 70 deletions
This file was deleted.

lua/hello.lua

Lines changed: 0 additions & 126 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)