-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (126 loc) · 3.87 KB
/
index.html
File metadata and controls
126 lines (126 loc) · 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>cc65 - a freeware C compiler for 6502 based systems</title>
<link rel="stylesheet" type="text/css" href="cc65.css"/>
<link rel="shortcut icon" type="image/x-icon" href="image/favicon.ico"/>
</head>
<body>
<img style="float:right;" width="300" height="150" src="image/cc65.png" alt=""/>
<h1>Main Page</h1>
<div id="menu">
<div id="innermenu">
<ul>
<li id="here"><a href="index.html">Main Page</a>
</li>
<li><a href="getting-started.html">Getting Started</a>
</li>
<li><a href="/doc">Documentation</a>
</li>
<li><a href="mailing-lists.html">Mailing Lists</a>
</li>
</ul>
</div>
</div>
<h2>Content</h2>
<ul class="down">
<li><a href="#Overview">Overview</a>
</li>
<li><a href="#Contact">Contact</a>
</li>
<li><a href="#Links">Links</a>
</li>
</ul>
<h2><a name="Overview">Overview</a></h2>
<p>cc65 is a complete cross development package for 65(C)02 systems, including
a powerful macro assembler, a C compiler, linker, librarian and several
other tools.
</p>
<p>cc65 has C and runtime library support for many of the old 6502 machines,
including
<ul class="bullet">
<li>the following Commodore machines:
<ul class="">
<li>VIC20
</li>
<li>C16/C116 and Plus/4
</li>
<li>C64
</li>
<li>C128
</li>
<li>CBM 510 (aka P500)
</li>
<li>the 600/700 family
</li>
<li>newer PET machines (not 2001).
</li>
</ul>
</li>
<li>the Apple ][+ and successors.
</li>
<li>the Atari 8-bit machines.
</li>
<li>the Atari 2600 console.
</li>
<li>the Atari 5200 console.
</li>
<li>GEOS for the C64, C128 and Apple //e.
</li>
<li>the Bit Corporation Gamate console.
</li>
<li>the NEC PC-Engine (aka TurboGrafx-16) console.
</li>
<li>the Nintendo Entertainment System (NES) console.
</li>
<li>the Watara Supervision console.
</li>
<li>the VTech Creativision console.
</li>
<li>the Oric Atmos.
</li>
<li>the Oric Telestrat.
</li>
<li>the Lynx console.
</li>
<li>the Ohio Scientific Challenger 1P.
</li>
<li>the Commander X16.
</li>
<li>the Synertek Systems Sym-1.
</li>
</ul>
<p>The libraries are fairly portable, so creating a version for other 6502s
shouldn't be too much work.
</p>
<h2><a name="Contact">Contact</a></h2>
<p>
For general discussion, questions, etc subscribe to the <a href="mailing-lists.html">mailing list</a>
or use the <a href="https://github.com/cc65/cc65/discussions">github discussions</a>.
</p><p>
For reporting bugs use the <a href="https://github.com/cc65/cc65/issues">github issues</a>.
</p><p>
Some of us may also be around on IRC <a href="https://web.libera.chat/#cc65">#cc65</a> on libera.chat
</p>
<h2><a name="Links">Links</a></h2>
<ul class="right">
<li>
<a href="https://github.com/cc65/cc65">Source Code</a>
</li>
<li>
<a href="https://sourceforge.net/projects/cc65/files/cc65-snapshot-win32.zip">
Windows Snapshot
</a>
</li>
<li>
<a href="doc/">Documentation</a> (<a href="https://github.com/cc65/doc/archive/refs/heads/master.zip" download="cc65-doc.zip">download</a>)
</li>
<li>
<a href="https://github.com/cc65/wiki/wiki">Wiki</a>
</li>
<li>
<a href="https://sourceforge.net/projects/cc65/files/contrib">User Contributions</a>
</li>
</ul>
</body>
</html>