]> git.sur5r.net Git - c128-kasse/blob - README.md
kasse: Add comment why we disable IRQs
[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 Install `/usr/lib/vice/C128/kernal*` and `/usr/lib/vice/C128/charg*` (ask contributors for a copy).
12
13 ### Emulator configuration
14
15 Enable the following options in x128:
16 * Settings → Drive settings → drive #8 options → enable IEC device
17 * Settings → Printer settings → Printer #4 enable IEC device
18 * Settings → Printer settings → Printer #4 emulation → File system access
19
20 Alternatively, configure the following values in `~/.vice/vicerc` (which you
21 can create by selecting the menu entry “Settings” → “Save settings”):
22 ```
23 IECDevice4=1
24 IECDevice8=1
25 Printer4=1
26 ```
27
28 ### Running the emulator
29
30 ```
31 x128 -autostart kasse.d64
32 ```
33
34 ## Reading files from the floppy (disk image)
35
36 To view the contents of a file within a disk image (e.g. the logfile), use:
37
38 ```
39 c1541 -attach kasse.d64 -read "log-2" >(petcat -nh) >&-
40 ```