]> git.sur5r.net Git - cc65/blob - samples/README
The _printf routine does not return anything.
[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 GNU make. It works out of the box on Linux
10     and similar systems. If you're using Windows, you will have to compile
11     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:           diodemo
37 Description:    A disc copy program written and contributed by Oliver
38                 Schmidt, <ol.sc@web.de>. Supports single or dual disc copy.
39 Platforms:      The program does depend on conio and dio (direct disk i/o),
40                 so it does currently compile for the Atari and Apple ][
41                 machines.
42
43 -----------------------------------------------------------------------------
44 Name:           gunzip65
45 Description:    A gunzip utility for 6502 based machines written by Piotr
46                 Fusik <fox@scene.pl>.
47 Platforms:      Runs on all platforms with file I/O (currently the Atari and
48                 most Commodore machines).
49
50 -----------------------------------------------------------------------------
51 Name:           hello
52 Description:    A nice "Hello world" type program that uses the conio
53                 console I/O library for output.
54 Platforms:      Runs on all platforms that support conio, which means:
55                 Apple ][, Atari, C16, C64, C128, CBM510, CBM610, PET, Plus/4
56
57 -----------------------------------------------------------------------------
58 Name:           mandelbrot
59 Description:    A mandelbrot demo using integer arithmetic. The demo was
60                 written by groepaz/hitmen and converted to cc65 using TGI
61                 graphics by Stephan Haubenthal.
62 Platforms:      All systems with TGI support. You may have to change the
63                 driver/resolution definition in the source.
64
65 -----------------------------------------------------------------------------
66 Name:           mousedemo
67 Description:    Shows how to use the mouse.
68 Platforms:      All systems with mouse and conio support:
69                 C64, C128, CBM510, Atari, Apple2
70
71 -----------------------------------------------------------------------------
72 Name:           nachtm
73 Description:    Plays "Eine kleine Nachtmusik" by Wolfgang Amadeus Mozart
74 Platforms:      All systems that have the Commodore SID (Sound Interface
75                 Device):
76                 C64, C128, CBM510, CBM610
77
78 -----------------------------------------------------------------------------
79 Name:           plasma
80 Description:    A fancy graphics demo written by groepaz/hitmen.
81 Platforms:      The program needs a VIC, or a TED, so it runs on the following
82                 systems:
83                 C64, C128, CBM510, Plus/4
84
85 -----------------------------------------------------------------------------
86 Name:           sieve
87 Description:    Implements the "Sieve of Eratosthenes" as a way to find all
88                 prime numbers in a specific number interval. Often used as
89                 a benchmark program.
90 Platforms:      All systems with conio and clock support:
91                 Atari, C16, C64, C128, CBM510, CBM610, PET, Plus/4
92
93 -----------------------------------------------------------------------------
94 Name:           tgidemo
95 Description:    Shows some of the graphics capabilities of the "tiny graphics
96                 interface".
97 Platforms:      Runs on all platforms that have TGI support:
98                 Apple ][, C64, C128, Oric Atmos, Geos and Lynx.
99