mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
123 lines
3.2 KiB
HTML
123 lines
3.2 KiB
HTML
<html>
|
|
<head>
|
|
<title>NETBOOT65 - network booting for 6502 computers</title>
|
|
</head>
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
table {
|
|
background-color: #000000;
|
|
padding: 0px;
|
|
margin: 10px 20px;
|
|
}
|
|
|
|
th {
|
|
width: 10em;
|
|
background-color: #ccccff;
|
|
padding: 4px;
|
|
text-align: center;
|
|
padding-right: 4px;
|
|
# border: solid 2px black;
|
|
}
|
|
|
|
td {
|
|
font-family: sans-serif;
|
|
font-weight: bold;
|
|
width: 6em;
|
|
padding: 4px;
|
|
text-align: center;
|
|
# border: solid 2px black;
|
|
}
|
|
|
|
.done {
|
|
background-color: #99ff99;
|
|
}
|
|
|
|
.partial {
|
|
background-color: #ffff99;
|
|
}
|
|
|
|
.unimp {
|
|
background-color: #ff9999;
|
|
}
|
|
|
|
.legend {
|
|
background-color: #ffffff;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.red {
|
|
color: #ff6666;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.yellow {
|
|
color: #ffcc00;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.green {
|
|
color: #33cc33;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.history_entry {
|
|
background-color: #ffffff;
|
|
font-weight: normal;
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
|
|
<h1>netboot65</h1>
|
|
|
|
<p>
|
|
netboot65 is a project to support network booting C64 and Apple ][computers. It is based on the <a href=http://ip65.sourceforge.net/>IP65 TCP/IP stack</a>. Current components are:
|
|
<ul>
|
|
<li>a server (written in <a href=http://www.ruby-lang.org/>ruby</a> for maximum portability) that provides a TFTP server with some proprietary extensions to allow clients to request a directory listing.
|
|
<li>clients (currently available as a disk image for Apple ][, and either a cartridge or a standalone prg file for C64) that initialises an IP stack, acquires an IP address via DHCP, queries the local LAN for a TFTP server,
|
|
and then allows a program file to be downloaded via TFTP and executed. Currently only 'single load' programs are supported, but many old games and utility programs can be run in this way.
|
|
<li>the NB65 API (currently for C64 only) that allows for IP aware applications to be developed without being tied to a specific MAC address, IP address or network device, as is the case with most existing
|
|
IP libraries for 6502 computers.
|
|
</ul>
|
|
</p>
|
|
|
|
<h2>Status</h2>
|
|
|
|
|
|
<h2>Documentation</h2>
|
|
<ul>
|
|
<li><a href=README.C64.html>C64 documentation</a>
|
|
<li><a href=README.Apple2.html>Apple ][ documentation</a>
|
|
<li><a href="nb65_api_technical_reference.doc">NB65 API Technical Reference (word doc)</a>
|
|
</ul>
|
|
|
|
|
|
<h2>Download</h2>
|
|
|
|
<a href="https://sourceforge.net/project/showfiles.php?group_id=250168">Latest release</a> (sourceforge.net)<p>
|
|
|
|
<h2>License</h2>
|
|
|
|
This project is released under the Mozilla Public License Version 1.1.
|
|
For details, please visit <a href="http://www.mozilla.org/MPL/">http://www.mozilla.org/MPL/</a>.
|
|
|
|
<h2>Source Code</h2>
|
|
Browse online at <a href=http://netboot65.svn.sourceforge.net/viewvc/netboot65/>http://netboot65.svn.sourceforge.net/viewvc/netboot65/</a> or else download the whole tree through SVN with the following instruction set:
|
|
<pre>svn co https://netboot65.svn.sourceforge.net/svnroot/netboot65 netboot65 </pre>
|
|
|
|
<p>
|
|
<a href="http://sourceforge.net/">
|
|
Project Web Hosted by <img src="http://sflogo.sourceforge.net/sflogo.php?group_id=250168&type=3" alt="SourceForge.net" />
|
|
</a>
|
|
|
|
</body>
|
|
</html>
|