]> git.sur5r.net Git - c128-kasse/blob - README.md
README: remove emulator configuration, we use -config vicerc
[c128-kasse] / README.md
1 ## Emulator
2
3 ### Emulator installation
4
5 On Debian and derivatives, install the `vice` package:
6
7 ```
8 apt install vice
9 ```
10
11 Then, install the (not-included) ROMs:
12 ```
13 wget http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-3.1.tar.gz
14 mkdir -p ~/.vice
15 tar xf vice-3.1.tar.gz -C ~/.vice/ vice-3.1/data --strip-components=2
16 ```
17
18 ### Compiling the software into an image
19
20 ```
21 make package
22 ```
23
24 ### Running the emulator
25
26 ```
27 make vice
28 ```
29
30 Then, type `run`, followed by enter.
31
32 ## Reading files from the floppy (disk image)
33
34 To view the contents of a file within a disk image (e.g. the logfile), use:
35
36 ```
37 c1541 -attach kasse.d64 -read "log-2" >(petcat -nh) >&-
38 ```