Skip to content

Commit

Permalink
readme: add more start instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
floooh committed Aug 10, 2024
1 parent e4369b0 commit c280864
Showing 1 changed file with 60 additions and 7 deletions.
67 changes: 60 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,59 @@ Run KC85/3 with 16 KByte RAM module (this will be automatically mapped to addres
zig build --release=fast run-kc853 -- -slot8 m022
```

#### KC85/3 Digger:
```
zig build --release=fast run-kc853 -- -slot8 m022 -file media/kc85/digger3.tap
```
#### KC85/3 SOWACO games:
```
zig build --release=fast run-kc853 -- -slot8 m022 -file media/kc85/jungle.kcc
```
```
zig build --release=fast run-kc853 -- -slot8 m022 -file media/kc85/pengo.kcc
```
```
zig build --release=fast run-kc853 -- -slot8 m022 -file media/kc85/house.kcc
```
```
zig build --release=fast run-kc853 -- -slot8 m022 -file media/kc85/cave.kcc
```
```
zig build --release=fast run-kc853 -- -slot8 m022 -file media/kc85/labyrinth.kcc
```

#### KC85/4 Sokoban
(this tests the KC85/4 per-pixel color mode):
```
zig build --release=fast run-kc854 -- -file media/kc85/sokoban4.kcc
```

#### KC-IDE sample on KC85/4:
(note: this demo has no sound)
```
zig build --release=fast run-kc854 -- -file media/kc85/demo.kcc
```

#### Doc.K's audio sampling demo:
```
zig build --release=fast run-kc854 -- -file media/kc85/sreplay.kcc
```
After the KC85/4 has finished booting, start the demo manually with the command:
```
PLAY
```
...or refresh the menu to show the available commands (which are `PLAY` and `STOP`):
```
MENU
```

#### Moods Plateau's Serious demo:
```
zig build --release=fast run-kc854 -- -file media/kc85/serious.kcc
```

#### Forth on KC85/3:

Start with Forth ROM module in expansion slot `08`:

```
Expand All @@ -47,16 +100,16 @@ zig build --release=fast run-kc854 -- -slot8 m026 media/kc85/forth.853
To activate and start the Forth module on KC85/2 and KC85/4:

```
% SWITCH 8 C1
% MENU
% FORTH
SWITCH 8 C1
MENU
FORTH
```

...on KC85/3 you also need to deactivate the BASIC ROM:

```
% SWITCH 8 C1
% SWITCH 2 0
% MENU
% FORTH
SWITCH 8 C1
SWITCH 2 0
MENU
FORTH
```

0 comments on commit c280864

Please sign in to comment.