]> git.sur5r.net Git - cc65/blob - samples/README
Fixed minor issues with the modifiers: Some modifiers where accepted (and
[cc65] / samples / README
1
2 This directory contains sample programs for the cc65 compiler.
3
4 Below is a short description for each of the programs together with a list of
5 the supported platforms.
6
7 Please note:
8
9   * The supplied makefile needs with GNU make. It works out of the box on
10     Linux and similar systems. If you're using Windows, you will have to
11     compile the programs manually.
12
13   * The makefile specifies the C64 as the default target platform, because all
14     of the programs run on this platform. When compiling for another platform,
15     you will have to change the line that specifies the target system at the
16     top of the makefile.
17
18
19 List of supplied sample programs:
20
21 -----------------------------------------------------------------------------
22 Name:           ascii
23 Description:    Shows the ASCII (or ATASCII, PETSCII) codes of typed
24                 characters. Written and contributed by Greg King
25                 <gngking@erols.com>.
26 Platforms:      All platforms with conio or stdio (compile time
27                 configurable).
28
29 -----------------------------------------------------------------------------
30 Name:           fire
31 Description:    Another graphics demo written by groepaz/hitmen.
32 Platforms:      The program is currently only running on the C64, but should
33                 be portable to the C128 and CBM510 (and maybe more machines).
34
35 -----------------------------------------------------------------------------
36 Name:           gunzip65
37 Description:    A gunzip utility for 6502 based machines written by Piotr
38                 Fusik <fox@scene.pl>.
39 Platforms:      Runs on all platforms with file I/O (currently the Atari and
40                 most Commodore machines).
41
42 -----------------------------------------------------------------------------
43 Name:           hello
44 Description:    A nice "Hello world" type program that uses the conio
45                 console I/O library for output.
46 Platforms:      Runs on all platforms that support conio, which means:
47                 Apple ][, Atari, C16, C64, C128, CBM510, CBM610, PET, Plus/4
48
49 -----------------------------------------------------------------------------
50 Name:           mandelbrot
51 Description:    A mandelbrot demo using integer arithmetic. The demo was
52                 written by groepaz/hitmen and converted to cc65 using TGI
53                 graphics by Stephan Haubenthal.
54 Platforms:      All systems with TGI support. You may have to change the
55                 driver/resolution definition in the source.
56
57 -----------------------------------------------------------------------------
58 Name:           mousedemo
59 Description:    Shows how to use the mouse.
60 Platforms:      All systems with mouse and conio support:
61                 C64, C128
62
63 -----------------------------------------------------------------------------
64 Name:           nachtm
65 Description:    Plays "Eine kleine Nachtmusik" by Wolfgang Amadeus Mozart
66 Platforms:      All systems that have the Commodore SID (Sound Interface
67                 Device):
68                 C64, C128, CBM510, CBM610
69
70 -----------------------------------------------------------------------------
71 Name:           plasma
72 Description:    A fancy graphics demo written by groepaz/hitmen.
73 Platforms:      The program needs a VIC, so it runs on the following systems:
74                 C64, C128, CBM510
75
76 -----------------------------------------------------------------------------
77 Name:           sieve
78 Description:    Implements the "Sieve of Eratosthenes" as a way to find all
79                 prime numbers in a specific number interval. Often used as
80                 a benchmark program.
81 Platforms:      All systems with conio and clock support:
82                 Atari, C16, C64, C128, CBM510, CBM610, PET, Plus/4
83 -----------------------------------------------------------------------------
84 Name:           tgidemo
85 Description:    Shows some of the graphics capabilities of the "tiny graphics
86                 interface".
87 Platforms:      Runs on all platforms that have TGI support:
88                 C64
89