Merge branch 'gh-pages' of https://github.com/cc65/cc65 into gh-pages
This commit is contained in:
commit
913608915f
18 changed files with 410 additions and 0 deletions
138
cc65.css
Normal file
138
cc65.css
Normal file
|
@ -0,0 +1,138 @@
|
|||
body {
|
||||
font-family: arial, helvetica, sans-serif;
|
||||
font-size: 100%;
|
||||
text-align: justify;
|
||||
margin-left: 110px;
|
||||
margin-top: 10px;
|
||||
margin-right: 30px;
|
||||
margin-bottom: 10px;
|
||||
background-image: url(image/cc65-bg.png);
|
||||
background-repeat: repeat-y;
|
||||
}
|
||||
a:active {
|
||||
color: #FF0000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:link {
|
||||
color: #0000FF;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:visited {
|
||||
color: #000080;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* title menu */
|
||||
div#menu {
|
||||
clear: both;
|
||||
width: 100%;
|
||||
padding: 0px;
|
||||
border-top: 1px solid #808080;
|
||||
border-bottom: 1px solid #808080;
|
||||
}
|
||||
div#innermenu {
|
||||
display: table;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 0px;
|
||||
}
|
||||
div#menu ul {
|
||||
margin: 0px;
|
||||
padding: 4px;
|
||||
list-style-type: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
div#menu li {
|
||||
display: inline;
|
||||
}
|
||||
div#menu a {
|
||||
margin: 0px 3px 0px 3px;
|
||||
padding: 1px 1em 1px 1em;
|
||||
border: 1px solid #303030;
|
||||
text-decoration: none;
|
||||
width: 160px;
|
||||
}
|
||||
div#menu a:link, div#menu a:visited, div#menu a:active {
|
||||
background-color: #909090;
|
||||
color: #000000;
|
||||
}
|
||||
div#menu a:hover {
|
||||
color: #DB3232;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
li#here a:link, li#here a:visited, li#here a:active {
|
||||
background-color: #909090;
|
||||
color: #DB3232;
|
||||
}
|
||||
li#here a:hover {
|
||||
background-color: #909090;
|
||||
color: #DB3232;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
text-align: left;
|
||||
color: #DB3232;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 250%;
|
||||
text-shadow: 2px 2px 6px #505050;
|
||||
letter-spacing: 2px;
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 160%;
|
||||
text-shadow: 2px 2px 6px #303030;
|
||||
letter-spacing: 1px;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
p {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
ul.bullet {
|
||||
margin-left: 2%;
|
||||
list-style-image: url(image/dot.png);
|
||||
}
|
||||
|
||||
ul.down {
|
||||
margin-left: 2%;
|
||||
list-style-image: url(image/downtria.png);
|
||||
}
|
||||
|
||||
ul.right {
|
||||
margin-left: 2%;
|
||||
list-style-image: url(image/triangle.png);
|
||||
}
|
||||
|
||||
ul ul {
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
/* box made like a banner */
|
||||
div.banner {
|
||||
border: 2px solid #808080;
|
||||
width: 80%;
|
||||
clear: both;
|
||||
padding-left: 2em;
|
||||
padding-right: 2em;
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
78
getting-started.html
Normal file
78
getting-started.html
Normal file
|
@ -0,0 +1,78 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>cc65 - Getting Started</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>Getting Started</h1>
|
||||
<div id="menu">
|
||||
<div id="innermenu">
|
||||
<ul>
|
||||
<li><a href="index.html">Main Page</a>
|
||||
</li>
|
||||
<li id="here"><a href="getting-started.html">Getting Started</a>
|
||||
</li>
|
||||
<li><a href="mailing-lists.html">Mailing Lists</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Content</h2>
|
||||
<ul class="down">
|
||||
<li><a href="#GNU">GNU/Linux</a>
|
||||
</li>
|
||||
<li><a href="#Windows">Microsoft Windows</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h2><a name="GNU">GNU/Linux</a></h2>
|
||||
<p>You have two options...
|
||||
<ul class="bullet">
|
||||
<li>
|
||||
<p>Change the current working directory to a path of your choice and
|
||||
enter...
|
||||
</p>
|
||||
<p>
|
||||
<kbd>git clone https://github.com/cc65/cc65.git<br>
|
||||
cd cc65<br>
|
||||
make<br>
|
||||
</kbd>
|
||||
</p>
|
||||
<p>This builds both the cc65 binaries (located in the 'bin'
|
||||
subdirectory) and the cc65 libraries. Now cc65 is fully functional
|
||||
without further steps.
|
||||
</p>
|
||||
<p>If you want to be able to run the cc65 binaries without providing
|
||||
their path you may additionally enter <kbd>sudo make avail</kbd>.
|
||||
This creates symbolic links to the binaries in '/usr/local/bin'.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="bullet">
|
||||
<li>
|
||||
<p>Install one of the pre-built packages for RPM based systems
|
||||
(OpenSUSE) or DEB based systems (Debian) from the
|
||||
<a href="http://software.opensuse.org/download.html?project=home%3Astrik&package=cc65">
|
||||
openSUSE Build Service download page for cc65</a>.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
<h2><a name="Windows">Microsoft Windows</a></h2>
|
||||
<p>Download the
|
||||
<a href="http://sourceforge.net/projects/cc65/files/cc65-snapshot-win32.zip">
|
||||
current cc65 snapshot</a> and unzip it to a path of your choice that
|
||||
<u>doesn't contain spaces</u> (let's presume 'c:\cc65' here). Now cc65
|
||||
is fully functional without further steps.
|
||||
</p>
|
||||
<p>If you want to be able to run the cc65 binaries without providing their
|
||||
path you may additionally add 'c:\cc65\bin' to your 'Path' environment
|
||||
variable.
|
||||
</p>
|
||||
<p><u>Note:</u> If you have used cc65 before then you need to make sure
|
||||
to remove all environment variables related to cc65 (like CC65_HOME).
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
BIN
image/cc65-100.xcf
Normal file
BIN
image/cc65-100.xcf
Normal file
Binary file not shown.
BIN
image/cc65-150.xcf
Normal file
BIN
image/cc65-150.xcf
Normal file
Binary file not shown.
BIN
image/cc65-300.xcf
Normal file
BIN
image/cc65-300.xcf
Normal file
Binary file not shown.
BIN
image/cc65-bg.png
Normal file
BIN
image/cc65-bg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
image/cc65-bg.xcf
Normal file
BIN
image/cc65-bg.xcf
Normal file
Binary file not shown.
BIN
image/cc65.png
Normal file
BIN
image/cc65.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
BIN
image/dot.png
Normal file
BIN
image/dot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,007 B |
BIN
image/dot.xcf
Normal file
BIN
image/dot.xcf
Normal file
Binary file not shown.
BIN
image/downtria.png
Normal file
BIN
image/downtria.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1 KiB |
BIN
image/downtria.xcf
Normal file
BIN
image/downtria.xcf
Normal file
Binary file not shown.
BIN
image/favicon.ico
Normal file
BIN
image/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 318 B |
BIN
image/favicon.xcf
Normal file
BIN
image/favicon.xcf
Normal file
Binary file not shown.
BIN
image/triangle.png
Normal file
BIN
image/triangle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1 KiB |
BIN
image/triangle.xcf
Normal file
BIN
image/triangle.xcf
Normal file
Binary file not shown.
110
index.html
Normal file
110
index.html
Normal file
|
@ -0,0 +1,110 @@
|
|||
<!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="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="#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 5200 console.
|
||||
</li>
|
||||
<li>GEOS for the C64, C128 and Apple //e.
|
||||
</li>
|
||||
<li>the NEC PC-Engine (aka TurboGrafx-16).
|
||||
</li>
|
||||
<li>the Nintendo Entertainment System (NES) console.
|
||||
</li>
|
||||
<li>the Supervision console.
|
||||
</li>
|
||||
<li>the Oric Atmos.
|
||||
</li>
|
||||
<li>the Lynx console.
|
||||
</li>
|
||||
<li>the Ohio Scientific Challenger 1P.
|
||||
</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="Links">Links</a></h2>
|
||||
<ul class="right">
|
||||
<li>
|
||||
<a href="http://github.com/cc65/cc65">Source Code</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://sourceforge.net/projects/cc65/files/cc65-snapshot-win32.zip">
|
||||
Windows Snapshot
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../doc">Documentation</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://github.com/cc65/wiki/wiki">Wiki</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://sourceforge.net/projects/cc65/files/contrib">User Contributions</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://travis-ci.org/cc65/cc65/builds">
|
||||
<img src="http://travis-ci.org/cc65/cc65.png" alt="Build Status"/>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<br/>
|
||||
<hr size="1" noshade="noshade"/>
|
||||
<p>If you want to contribute please get in touch with <a href="mailto:ol.sc@web.de">me</a>.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
84
mailing-lists.html
Normal file
84
mailing-lists.html
Normal file
|
@ -0,0 +1,84 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>cc65 - Mailing Lists</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>Mailing Lists</h1>
|
||||
<div id="menu">
|
||||
<div id="innermenu">
|
||||
<ul>
|
||||
<li><a href="index.html">Main Page</a>
|
||||
</li>
|
||||
<li><a href="getting-started.html">Getting Started</a>
|
||||
</li>
|
||||
<li id="here"><a href="mailing-lists.html">Mailing Lists</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Content</h2>
|
||||
<ul class="down">
|
||||
<li><a href="#cc65-devel">cc65 Development</a>
|
||||
</li>
|
||||
<li><a href="#cc65-git">cc65 Git Commits</a>
|
||||
</li>
|
||||
<li><a href="#musoftware">cc65@musoftware.de</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h2><a name="cc65-devel">cc65 Development</a></h2>
|
||||
<p>This mailing list makes up the primary communication media of the cc65
|
||||
community. Make sure to subscribe to it if you want to be part of cc65.
|
||||
<ul class="right">
|
||||
<li><a href="http://lists.sourceforge.net/lists/listinfo/cc65-devel">
|
||||
Subscription</a>
|
||||
</li>
|
||||
<li><a href="http://sourceforge.net/p/cc65/mailman/cc65-devel">
|
||||
Archive</a>
|
||||
</li>
|
||||
<li><form method="get" action="http://sourceforge.net/p/cc65/mailman/search">Search
|
||||
<input type="text" name="q" maxlength="255"/>
|
||||
<input type="hidden" name="mail_list" value="cc65-devel"/>
|
||||
<input type="submit" name="s" value="SourceForge Search"/>
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
<h2><a name="cc65-git">cc65 Git Commits</a></h2>
|
||||
<p>This mailing list receives a message for every push to the
|
||||
<a href="http://github.com/cc65/cc65">GitHub cc65 source code repository</a>.
|
||||
Subcribe to it if you want to be informed of every change made to the source code.
|
||||
<ul class="right">
|
||||
<li><a href="http://lists.sourceforge.net/lists/listinfo/cc65-git">
|
||||
Subscription</a>
|
||||
</li>
|
||||
<li><a href="http://sourceforge.net/p/cc65/mailman/cc65-git">
|
||||
Archive</a>
|
||||
</li>
|
||||
<li><form method="get" action="http://sourceforge.net/p/cc65/mailman/search">Search
|
||||
<input type="text" name="q" maxlength="255"/>
|
||||
<input type="hidden" name="mail_list" value="cc65-git"/>
|
||||
<input type="submit" name="s" value="SourceForge Search"/>
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
<h2><a name="musoftware">cc65@musoftware.de</a></h2>
|
||||
<p>This mailing list was formerly the main communication media of the cc65
|
||||
community. The threads there still hold a wealth of information on cc65.
|
||||
<ul class="right">
|
||||
<li><a href="../mailarchive">
|
||||
Archive</a>
|
||||
</li>
|
||||
<li><form method="get" action="http://www.google.com/search">Search
|
||||
<input type="text" name="q" maxlength="255"/>
|
||||
<input type="hidden" name="sitesearch" value="http://cc65.github.io/mailarchive"/>
|
||||
<input type="submit" name="s" value="Google Search"/>
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Reference in a new issue