emailler/doc
2009-04-10 01:19:42 +00:00
..
apple_dos_33_memory_layout.txt git-svn-id: http://svn.code.sf.net/p/netboot65/code@18 93682198-c243-4bdb-bd91-e943c89aac3b 2009-01-22 03:00:45 +00:00
BOOTSTRAPPING.txt git-svn-id: http://svn.code.sf.net/p/netboot65/code@18 93682198-c243-4bdb-bd91-e943c89aac3b 2009-01-22 03:00:45 +00:00
BUILD_REQUIREMENTS.txt Adding some requirements as I try to get an environment set up 2009-03-22 00:08:36 +00:00
ca65-doc-style.css git-svn-id: http://svn.code.sf.net/p/netboot65/code@58 93682198-c243-4bdb-bd91-e943c89aac3b 2009-03-26 04:05:19 +00:00
ip65.html git-svn-id: http://svn.code.sf.net/p/netboot65/code@58 93682198-c243-4bdb-bd91-e943c89aac3b 2009-03-26 04:05:19 +00:00
nb65_api_technical_reference.doc simplified NB65 - this is now release candidate for 1.0 of the API definition (although not necessarily the implementation) 2009-04-10 01:19:42 +00:00
netboot65_api.txt git-svn-id: http://svn.code.sf.net/p/netboot65/code@89 93682198-c243-4bdb-bd91-e943c89aac3b 2009-04-06 11:09:26 +00:00
protocol.txt git-svn-id: http://svn.code.sf.net/p/netboot65/code@40 93682198-c243-4bdb-bd91-e943c89aac3b 2009-02-09 13:02:24 +00:00
README.Apple2.txt refactor README docs to be per-platform 2009-03-26 04:07:13 +00:00
README.C64.txt refactor README docs to be per-platform 2009-03-26 04:07:13 +00:00

NETBOOT65


TO USE WITH VICE:
	1) unzip the archive somewhere on your local hard drive
	2) start the bin/tftp_server.rb script (e.g. by double-clicking on it)
	3) run VICE with the rrnetboot.bin cartridge attached (e.g. "x64.exe -cartrr clients\rrnetboot.bin")

When rrnetboot.bin boots, it does the following
	
	- broadcasts a DHCP request to get an IP address allocated
	- broadcasts a TFTP request for a directory listing for anything matching "*.PRG"
	- displays a menu containing whatever files the TFTP server lists as available. 
	- Once a file is selected, it is downloaded via TFTP, and executed

ADDING MORE FILES

Only single-load files can be used (this may change in a future release). The files need to be in "PRG" format, i.e.the first 2 bytes of the file must be
the load address (little-endian, i.e. low/high). The files also need to have a file extension of ".PRG" (in upper case, if your operating system of choice
is case sensitive).

Files need to be placed in the 'boot/' folder.

Due to a limitation in the menu  selection code, only the first 128 PRG files in the boot/ folder can be selected.

	
REQUIREMENTS:
	1) RR-NET or compatible adaptor (to use under VICE, you will need pcap or winpcap installed)
	2) a DHCP server on your network
	3) a working ruby installation