<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>PDP11.co.uk</title>
	<atom:link href="http://www.pdp11.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pdp11.co.uk</link>
	<description>A guide to the preservation and restoration of PDP-11 computers</description>
	<lastBuildDate>Sun, 09 May 2010 08:37:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PDP-11 MUD &#8211; Building the production box</title>
		<link>http://www.pdp11.co.uk/blog/2010/05/09/pdp-11-mud-building-the-production-box/</link>
		<comments>http://www.pdp11.co.uk/blog/2010/05/09/pdp-11-mud-building-the-production-box/#comments</comments>
		<pubDate>Sun, 09 May 2010 08:37:01 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=173</guid>
		<description><![CDATA[Initially I have decided to run the MUD on a microPDP-11/73 running BSD 2.11 Unix.
The chassis was fitted with a 4MB memory card, a third party eight channel DZV-11, a ethernet card and a CMD CQD-220 SCSI controller with a 18GB SCSI disk in an external case.
To get BSD onto the disk, I hooked it [...]]]></description>
			<content:encoded><![CDATA[<p>Initially I have decided to run the MUD on a microPDP-11/73 running BSD 2.11 Unix.</p>
<p>The chassis was fitted with a 4MB memory card, a third party eight channel DZV-11, a ethernet card and a CMD CQD-220 SCSI controller with a 18GB SCSI disk in an external case.</p>
<p>To get BSD onto the disk, I hooked it up to a PC running simh and prepared a suitable disk image.</p>
<p>One problem I encountered was that the standard MSCP driver wasn&#8217;t fully compatible with the CMD CQD-220 controller. To resolve this it is necessary to compile a patched boot block. This can be found here:  <a href="http://www.pdp11.co.uk/files/2010/02/rauboot.s">rauboot.s</a> (<a href="http://www.chdickman.com/pdp11/">original site</a>).</p>
<p>To install, I fired up the disk image I was planning on using in SIMH and performed the following steps:</p>
<ul>
<li>cd /usr/src/sys/mdec/</li>
<li>mv rauboot.s rauboot.s.orig</li>
<li>vi rauboot.s</li>
<li>i (For insert)</li>
<li>pasted in above copy of rauboot.s</li>
<li>after the paste completed, ESC :wq!  (write and quite)</li>
<li>make    (rebuilds the mdec files)</li>
<li>cp rauboot /mdec</li>
<li>dd if=/mdec/rauboot of=/rra0a count=1</li>
</ul>
<p>Once the disk image was prepared and working, the SCSI disk was hooked up to the SIMH box (running under linux) and the &#8216;dd&#8217; command used to copy the disk image onto the disk.</p>
<p>Having done that, the disk was reconnected to the PDP and booted up into BSD 2.11. The ethernet was connected up to my office network (via a AUI transceiver). The /etc/netstart and /etc/hosts files were tweaked to assign the box an IP, subnet and gateway on the local network and /etc/inetd.conf modified to enable the FTP server. The PDP was then rebooted into multiuser mode and the network confirmed to be workin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2010/05/09/pdp-11-mud-building-the-production-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDP-11 MUD</title>
		<link>http://www.pdp11.co.uk/blog/2010/02/21/pdp-11-mud/</link>
		<comments>http://www.pdp11.co.uk/blog/2010/02/21/pdp-11-mud/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 20:38:22 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=170</guid>
		<description><![CDATA[I&#8217;ve frequently been questioned as to why I collect old computers and what they actual do. This has traditionally been a hard question to answer although this is equally true of most collecting hobbies (why do people preserve Model-T fords when a modern car does the job so much better!).
However it has left me with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve frequently been questioned as to why I collect old computers and what they actual do. This has traditionally been a hard question to answer although this is equally true of most collecting hobbies (why do people preserve Model-T fords when a modern car does the job so much better!).</p>
<p>However it has left me with a desire to find an interesting practical use for my machines. One of my earliest computing experiences and fondest memories was playing Essex MUD via the JANET network and so I&#8217;ve decided to write a MUD for the PDP-11 and use a mixture of terminals and micros to provide user access and to control non-player characters.</p>
<p>The game will be written in C under BSD 2.11 with DZ11&#8217;s providing shell access. The game itself will run as a single process, non-blocking daemon accessed via sockets. This has the advantage of providing serial and network (using telnet) access to the game.</p>
<p>Initially I will develop the game under SIMH, with a uPDP-11/73 with an RD54 used as the production machine. Ultimately I hope to move it all over to a UNIBUS machine, either an 11/40 or one of my 11/70s, but I&#8217;ll start simple to begin with.</p>
<p>Non player characters will be implemented on BBC micros in BASIC. The BBCs will interact with the PDP via serial.</p>
<p>I expect development to take 2-3 months of evenings and I&#8217;ll report back here regularly on how things are progressing. Once something is working I&#8217;ll put a simh version online for people to play with.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2010/02/21/pdp-11-mud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inventory: Flipchips</title>
		<link>http://www.pdp11.co.uk/blog/2009/08/04/inventory-flipchips/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/08/04/inventory-flipchips/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 10:52:56 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[My Machines]]></category>
		<category><![CDATA[flipchips]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/2009/08/04/inventory-flipchips/</guid>
		<description><![CDATA[This is an inventory of flipchips in my collection:

M050 &#8211; 50mA indicator and relay driver
M100 x 2 &#8211; Bus data interface
M107 x 6 &#8211; Device selector PDP-8, Non Omnibus
M113 x 15 &#8211; 2-input NAND gates (x10)
M137 x 4 &#8211; high speed 4-input power NAND Gates
M139 x 4 &#8211; 8-input NAND gate (x3) (pinout different from M119)
M141 x4 &#8211; AND/NOR [...]]]></description>
			<content:encoded><![CDATA[<p>This is an inventory of flipchips in my collection:</p>
<ul>
<li>M050 &#8211; 50mA indicator and relay driver</li>
<li>M100 x 2 &#8211; Bus data interface</li>
<li>M107 x 6 &#8211; Device selector PDP-8, Non Omnibus</li>
<li>M113 x 15 &#8211; 2-input NAND gates (x10)</li>
<li>M137 x 4 &#8211; high speed 4-input power NAND Gates</li>
<li>M139 x 4 &#8211; 8-input NAND gate (x3) (pinout different from M119)</li>
<li>M141 x4 &#8211; AND/NOR gates</li>
<li>M155 x4 &#8211; 4-line to 16-line Decoder</li>
<li>M159 &#8211; Arithmetric/logic unit</li>
<li>M160 x5 &#8211; AND/NOR Gate module</li>
<li>M161 x4 &#8211; Binary to Octal/Decimal Decoder</li>
<li>M169 x4 &#8211; Gating Module</li>
<li>M178 x8 &#8211; 8&#215;6 data mixer</li>
<li>M190 x4 &#8211; ?</li>
<li>M191 &#8211; ALU Look-Ahead Logic</li>
<li>M202 x4 &#8211; J-K flip flop module</li>
<li>M203 &#8211; eight Set-Reset flip flop module</li>
<li>M204 x3 &#8211; General purpose buffer and counter module</li>
<li>M205 x4 &#8211; five -&quot;D&quot; FLIP FLOPS</li>
<li>M206 x4 &#8211; Six General purpose flip-flops</li>
<li>M207 x2 &#8211; Six General purpose flip-flops</li>
<li>M211 x2 &#8211; Binary up/down counter (6 bits wide)</li>
<li>M212 x4 &#8211; 6-Bit L-R Shift Register</li>
<li>M214 x2 &#8211; ?</li>
<li>M216 x5 &#8211; Six flop-flops</li>
<li>M217 x4 &#8211; Clock Register</li>
<li>M238 x4 &#8211; Dual 4-bit binary synchronous up/down counter</li>
<li>M245 x4 &#8211; Dual 4-bit shift register</li>
<li>M304 x4 &#8211; One-shot delay (PC15)</li>
<li>M307 x4 &#8211; Integrating one-shot module</li>
<li>M310 x4 &#8211; Delay line</li>
<li>M360 x2 &#8211; Variable delay</li>
<li>M401 x4 &#8211; Variable clock</li>
<li>M405 x3 &#8211; Crystal clock</li>
<li>M452 x4 &#8211; Variable (TTY) clock (for PC15)</li>
<li>M501 &#8211; Schmitt trigger</li>
<li>M503 x4 &#8211; Schmitt Trigger</li>
<li>M506 x4 &#8211; Negative input converter</li>
<li>M508 x4 &#8211; <span class="text">Bus converter</span></li>
<li>M510 &#8211;      Positive bus receiver (for PC15)</li>
<li>M516 x8 &#8211; Positive bus receiver</li>
<li>M514 &#8211; Bus transceiver</li>
<li>M602 x2 &#8211;      Pulse Generator (amplifier)</li>
<li>M606 x5 &#8211; Pulse Generator (for PC15)</li>
<li>M611 x4 &#8211; high speed Power inverter</li>
<li>M617 x5 &#8211;      4-input NOR buffers (x6)</li>
<li>M622 &#8211; Positive Pulse Receiver (for PC15)</li>
<li>M623 x 2 &#8211; Bus driver</li>
<li>M627 x4 &#8211; Power amplifier module</li>
<li>M640 &#8211; ?</li>
<li>M650 x4 &#8211;      Negative output converter</li>
<li>M660 x5 &#8211; Positive level cable driver</li>
<li>M661 x9 &#8211; Positive level driver</li>
<li>M712 x2 &#8211; ?</li>
<li>M719 x2 &#8211; KW-12 Clock Input Synchronizer</li>
<li>M720 x4 &#8211;      Memory detection</li>
<li>M870 &#8211; Simple Clock</li>
<li>M906 x3 &#8211; Cable terminator</li>
<li>M921 &#8211; Device code jumper select</li>
<li>M939&#215;2 &#8211; ?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/08/04/inventory-flipchips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inventory: My Module Spares</title>
		<link>http://www.pdp11.co.uk/blog/2009/07/17/inventory-my-module-spares/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/07/17/inventory-my-module-spares/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 15:48:48 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[QBUS]]></category>
		<category><![CDATA[unibus]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/2009/07/17/inventory-my-module-spares/</guid>
		<description><![CDATA[This is a list of spare modules I have in my collection:
G7273 X 10 &#8211; U &#8211; Bus Grant &#38; Non-processor grant
M105 X 8 &#8211; Q -Device selector for PDP-11
M4002 &#8211; U &#8211; KWV11-C Programmable Real-Time Clock
M7390 &#8211; Unknown
M7513 &#8211; Q &#8211; RQDX extender for RQDX1
M7555 X 20 &#8211; Q &#8211; RQDX3 MFM Winchester and [...]]]></description>
			<content:encoded><![CDATA[<p>This is a list of spare modules I have in my collection:</p>
<p>G7273 X 10 &#8211; U &#8211; Bus Grant &amp; Non-processor grant<br />
M105 X 8 &#8211; Q -Device selector for PDP-11<br />
M4002 &#8211; U &#8211; KWV11-C Programmable Real-Time Clock<br />
M7390 &#8211; Unknown<br />
M7513 &#8211; Q &#8211; RQDX extender for RQDX1<br />
M7555 X 20 &#8211; Q &#8211; RQDX3 MFM Winchester and floppy disk controller<br />
M7559 &#8211; Q &#8211; TQK70 TMSCP controller for TK70<br />
M7680 &#8211; ? &#8211; RK05<br />
M780 &#8211; U &#8211; KL11 Teletype transmitter &amp; receiver for KL11, 110 baud<br />
M7800 X 3 &#8211; U &#8211; DL11 Async transmitter &amp; receiver<br />
M7816 &#8211; U &#8211; DQ11-AB Bus selectors and block check<br />
M7820 &#8211; U &#8211; KW11 Interrupt control, 7-bits, 1 per PDP11 peripheral<br />
M7822 &#8211; U &#8211; DU11 Synchronous serial line interface.<br />
M7823 &#8211; U &#8211; KW11-W Watchdog timer module<br />
M7846 X 3 &#8211; U &#8211; RX11 RX01 floppy disk controller<br />
M7860 X 2 &#8211; U &#8211; DR11-C M786+M105+M7821; general device interface to PDP11<br />
M7864 &#8211; U &#8211; DR11-L DR11-L, 2 word unibus input interface<br />
M7946 &#8211; Q &#8211; RXV11 RX01 8&#8243; floppy disk controller<br />
M8020 &#8211; Q &#8211; DPV11-M Single-line serial EIA sync interface<br />
M8300 &#8211; O &#8211; KK8E Major registers<br />
M8310 &#8211; O &#8211; KK8E Major register control<br />
M848 X 2 &#8211; O &#8211; KP8E Power fail and auto-restart<br />
M8554 &#8211; U &#8211; DTE20 (Unibus Interrupt Control) [ KL-10D ]<br />
M8946 &#8211; Unknown<br />
M8951 &#8211; Unknown<br />
M920 &#8211; U &#8211; UNIBUS connector<br />
M930 X 5 &#8211; U &#8211; Bus terminator<br />
M9312 &#8211; U &#8211; Bootstrap terminator<br />
M9396 &#8211; Unknown<br />
M935 X 2 &#8211; OMNIBUS bridge<br />
M981 &#8211; Unknown<br />
M9970 &#8211; U &#8211; M997, H854 Facing Edge</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/07/17/inventory-my-module-spares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>microRSX-11 RX50 distribution</title>
		<link>http://www.pdp11.co.uk/blog/2009/05/17/microrsx-11-rx50-distribution/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/05/17/microrsx-11-rx50-distribution/#comments</comments>
		<pubDate>Sun, 17 May 2009 18:22:26 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[archiving]]></category>
		<category><![CDATA[RSX-11]]></category>
		<category><![CDATA[rx50]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=164</guid>
		<description><![CDATA[microRSX-11 is a expanded subset of RSX-11/M plus and was targetted at the microPDP-11 family of machines. Here is an archive of a distribution set of RX50 floppies I was recently given:



Image Name
Label
Description


URSX1INS.DSK
MICRO/RSX V1 RX50 INSTALL (BL-Z022A-BC)



URSX1OS1.DSK
MICRO/RSX V1 RX50 1/6 (BL-Z023A-BC)



URSX1OS2.DSK
MICRO/RSX V1 RX50 2/6 (BL-Z024A-BC)



URSX1OS3.DSK
MICRO/RSX V1 RX50 3/6 (BL-Z025A-BC)



URSX1OS4.DSK
MICRO/RSX V1 RX50 4/6 (BL-Z026A-BC)



URSX1OS5.DSK
MICRO/RSX V1 RX50 [...]]]></description>
			<content:encoded><![CDATA[<p>microRSX-11 is a expanded subset of RSX-11/M plus and was targetted at the microPDP-11 family of machines. Here is an archive of a distribution set of RX50 floppies I was recently given:</p>
<table border="1" cellspacing="1" width="100%">
<tbody>
<tr>
<th>Image Name</th>
<th>Label</th>
<th>Description</th>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1ins.dsk">URSX1INS.DSK</a></td>
<td>MICRO/RSX V1 RX50 INSTALL (BL-Z022A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1os1.dsk">URSX1OS1.DSK</a></td>
<td>MICRO/RSX V1 RX50 1/6 (BL-Z023A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1os2.dsk">URSX1OS2.DSK</a></td>
<td>MICRO/RSX V1 RX50 2/6 (BL-Z024A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1os3.dsk">URSX1OS3.DSK</a></td>
<td>MICRO/RSX V1 RX50 3/6 (BL-Z025A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1os4.dsk">URSX1OS4.DSK</a></td>
<td>MICRO/RSX V1 RX50 4/6 (BL-Z026A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1os5.dsk">URSX1OS5.DSK</a></td>
<td>MICRO/RSX V1 RX50 5/6 (BL-Z027A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1os6.dsk">URSX1OS6.DSK</a></td>
<td>MICRO/RSX V1 RX50 6/6 (BL-Z028A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1hel.dsk">URSX1HEL.DSK</a></td>
<td>MICRO/RSX V1 RX50 HELP (BL-Z029A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1erl.dsk">URSX1ERL.DSK</a></td>
<td>MICRO/RSX V1 RX50 ERROR LOGGING (BL-Z030A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1ap1.dsk">URSX1AP1.DSK</a></td>
<td>MICRO/RSX ADV PRG V1 RX50 1/5 (BL-Z031A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1ap2.dsk">URSX1AP2.DSK</a></td>
<td>MICRO/RSX ADV PRG V1 RX50 2/5 (BL-Z032A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1ap3.dsk">URSX1AP3.DSK</a></td>
<td>MICRO/RSX ADV PRG V1 RX50 3/5 (BL-Z033A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1ap4.dsk">URSX1AP4.DSK</a></td>
<td>MICRO/RSX ADV PRG V1 RX50 4/5 (BL-Z034A-BC)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RSX-11/RX50/ursx1ap5.dsk">URSX1AP5.DSK</a></td>
<td>MICRO/RSX ADV PRG V1 RX50 5/5 (BL-Z034A-BC)</td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/05/17/microrsx-11-rx50-distribution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RT-11 RX50 Disk Images</title>
		<link>http://www.pdp11.co.uk/blog/2009/05/17/rt-11-rx50-disk-images/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/05/17/rt-11-rx50-disk-images/#comments</comments>
		<pubDate>Sun, 17 May 2009 07:36:26 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[archiving]]></category>
		<category><![CDATA[RT-11. games]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=154</guid>
		<description><![CDATA[In my missing to archive all software I have for my PDP-11, I&#8217;ve spent some time working through my RX50 disks. Here are the results of my labours
I archived them using John Wilsons excellent PUTR utility using a PC fitted with a 5.25&#8243; floppy drive (as drive B:). Here is the process I used:

Start up [...]]]></description>
			<content:encoded><![CDATA[<p>In my missing to archive all software I have for my PDP-11, I&#8217;ve spent some time working through my RX50 disks. Here are the results of my labours</p>
<p>I archived them using John Wilsons excellent <a href="http://www.dbit.com/pub/putr/">PUTR utility</a> using a PC fitted with a 5.25&#8243; floppy drive (as drive B:). Here is the process I used:</p>
<ul>
<li>Start up PUTR</li>
<li>Mount the RX50 in foreign mode with:MOUNT B: /FOREIGN /RX50</li>
<li>Then for each floppy:COPY/DEV/FILE B: [imagename]</li>
</ul>
<p>Here are the initial set of disk images I have created. I&#8217;ve not had a chance to look at them in detail, but there looks like there is plenty of stuff that is of interested to the general community:</p>
<table border="1" cellspacing="1" width="100%">
<tbody>
<tr>
<th>Image Name</th>
<th>Label</th>
<th>Description</th>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/kermit.dsk">KERMIT.DSK</a></td>
<td>RT11 KERMIT</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/rt11-xm.dsk">RT11-XM.DSK</a></td>
<td>BOOTABLE RTXM WITHOUT PM</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/czfnag0.dsk">CZFNAG0.DSK</a></td>
<td>CZFNAG0 Micro-11 formtr RX50</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/minc-for.dsk">MINC-FOR.DSK</a></td>
<td>MINC FORTRAN</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/languages.dsk">LANGUAGES.DSK</a></td>
<td>LANGUAGES MASTER &#8211; 2-MAR-89</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/fortran.dsk">FORTRAN.DSK</a></td>
<td>FORTRAN IV KIT</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/fortots.dsk">FORTOTS.DSK</a></td>
<td>FORTRAN IV OTS KIT</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/dungeon1.dsk">DUNGEON1.DSK</a></td>
<td>DUNGEON 1/2</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/dungeon2.dsk">DUNGEON2.DSK</a></td>
<td>DUNGEON 2/2</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/cave.dsk">CAVE.DSK</a></td>
<td>CAVE</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/cave2.dsk">CAVE2.DSK</a></td>
<td>CAVE (prob a copy of CAVE.DSK)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/flghtsim.dsk">FLGHTSIM.DSK</a></td>
<td>REGIS FLIGHT SIM</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games01.dsk">GAMES01.DSK</a></td>
<td>GAMES .SAV(CHESS) .BAS</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games02.dsk">GAMES02.DSK</a></td>
<td>BAS/FOR GAMES</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games03.dsk">GAMES03.DSK</a></td>
<td>BASIC GAMES 1</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games04.dsk">GAMES04.DSK</a></td>
<td>GAMES &#8211; SPACE INV., AIRCRAFT, CHESS</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games05.dsk">GAMES05.DSK</a></td>
<td>GAMES &#8211; BACKUP 1</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games06.dsk">GAMES06.DSK</a></td>
<td>GAMES &#8211; BACKUP 2</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games07.dsk">GAMES07.DSK</a></td>
<td>BASIC GAMES</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games08.dsk">GAMES08.DSK</a></td>
<td>BASIC GAMES (bad blocks during copy)</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/games09.dsk">GAMES09.DSK</a></td>
<td>WORKING GAMES</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/decode.dsk">DECODE.DSK</a></td>
<td>DECODE &#8211; .SAV FILE DISSEMBLER</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/txtwrt.dsk">TXTWRT.DSK</a></td>
<td>TXTWRT &#8211; SCREEN OUTPUT EDITOR</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/runoff.dsk">RUNOFF.DSK</a></td>
<td>RTCALL, RUNOFF</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/dd-drv.dsk">DD-DRV.DSK</a></td>
<td>V5.4 DD DRIVER</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/monitor.dsk">MONITOR.DSK</a></td>
<td>MONTOR UTILITIES &#8211; LOGICA, RMOM, TABLES</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/various0.dsk">VARIOUS0.DSK</a></td>
<td>CLOCK, FOCAL, SHEET</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/indsubdr.dsk">INDSUBDR.DSK</a></td>
<td>IND_SUBDIR</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/mjclok.dsk">MJCLOK.DSK</a></td>
<td>MJCLOK</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/sheet.dsk">SHEET.DSK</a></td>
<td>SHEET 3.0</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/tag.dsk">TAG.DSK</a></td>
<td>TAG</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/cache.dsk">CACHE.DSK</a></td>
<td>CACHE</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/uclplus.dsk">UCLPLUS.DSK</a></td>
<td>UCL+</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/ldusr.dsk">LDUSR.DSK</a></td>
<td>LD USER</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/spell.dsk">SPELL.DSK</a></td>
<td>SPELL</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/asc.dsk">ASC.DSK</a></td>
<td>ASC</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/sheet2.dsk">SHEET2.DSK</a></td>
<td>SHEET</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/subdir.dsk">SUBDIR.DSK</a></td>
<td>SUBDIR</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/various1.dsk">VARIOUS1.DSK</a></td>
<td>FIND,SDIR</td>
<td></td>
</tr>
<tr>
<td><a href="/library/local/pdp-11/RT-11/font.dsk">FONT.DSK</a></td>
<td>FONT</td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/05/17/rt-11-rx50-disk-images/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Software Archiving</title>
		<link>http://www.pdp11.co.uk/blog/2009/05/17/software-archiving/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/05/17/software-archiving/#comments</comments>
		<pubDate>Sun, 17 May 2009 07:15:58 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[archiving]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[rk05]]></category>
		<category><![CDATA[rl01]]></category>
		<category><![CDATA[rl02]]></category>
		<category><![CDATA[RSX-11]]></category>
		<category><![CDATA[RT-11]]></category>
		<category><![CDATA[rx01]]></category>
		<category><![CDATA[rx50]]></category>
		<category><![CDATA[XXDP]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=152</guid>
		<description><![CDATA[One of my main fears with my collection is loosing software over time as disks slowly decay. DEC media has proven amazingly resilient with many of my disks well over 30 years old. The reality is though that they won&#8217;t last forever and so I&#8217;ve decided now is the time to start a program of [...]]]></description>
			<content:encoded><![CDATA[<p>One of my main fears with my collection is loosing software over time as disks slowly decay. DEC media has proven amazingly resilient with many of my disks well over 30 years old. The reality is though that they won&#8217;t last forever and so I&#8217;ve decided now is the time to start a program of archiving them all to modern media.</p>
<p>I have the following to work my way through:</p>
<ul>
<li>40 RL02 packs</li>
<li>24 RL01 packs</li>
<li>~250 RX01 and RX02 floppies</li>
<li>~100 RX50s</li>
<li>24 TU56 tapes</li>
<li>~100 TU58 tapes</li>
<li>28 RK05 packs</li>
</ul>
<p>Software wise, these will yield a mixture of XXDP, RT-11, RSX-11/M, RSX-11/M PLUS, and Unix software. As I complete them I will put any useful finds online to download for others to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/05/17/software-archiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DECWriter III Rebuild</title>
		<link>http://www.pdp11.co.uk/blog/2009/05/11/decwriter-iii-rebuild/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/05/11/decwriter-iii-rebuild/#comments</comments>
		<pubDate>Mon, 11 May 2009 20:00:34 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=148</guid>
		<description><![CDATA[To give a nice period console to my 11&#8217;s I decided to have a crack at rebuilding the DECWriter III that has sat forgotten in the corner of my office for the last few months. The terminal was in a pretty mucky state, so I started with a deep clean using solvent based cleaning fluids. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="thickbox" href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00001.jpg"><img class="ngg-singlepic ngg-right alignright" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00001.jpg" alt="00001.jpg" width="288" height="216" /></a>To give a nice period console to my 11&#8217;s I decided to have a crack at rebuilding the DECWriter III that has sat forgotten in the corner of my office for the last few months. The terminal was in a pretty mucky state, so I started with a deep clean using solvent based cleaning fluids. This quickly took of the layers of muck that had built up and revealed a very clean terminal.</p>
<p>The lid was then removed and the innards cleaned out. All the sound proofing foam was removed as it had started to turn to mush. A couple of the mounting pillars which hold the lid to the case have sheered off and so these will need to be glued back into place.</p>
<p>With the terminal cleaned, power was cautiously applied and the voltages confirmed to be correct.</p>
<p>Having confirmed the power was ok, paper was loaded and a serial loop back plugged into the serial port and the terminal was powered back on. Typing on the keyboard resulted in activity from the print head although no actual print (the ribbon was dried out). I then help SETUP and T together to put the console into test print mode and the head went into over overdrive and slowly but surely the ribbon started to deliver ink. The print quality is fairly good, although the first row appears to be dead.</p>
<p>Next on the todo list is to fit a new ribbon (I have 4 on the way) and see if I can restore line 1 to life.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-4-148">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.pdp11.co.uk/blog/2009/05/11/decwriter-iii-rebuild/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00006.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="00006.jpg" alt="00006.jpg" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/thumbs/thumbs_00006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00005.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="00005.jpg" alt="00005.jpg" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/thumbs/thumbs_00005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00004.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="00004.jpg" alt="00004.jpg" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/thumbs/thumbs_00004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00003.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="00003.jpg" alt="00003.jpg" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/thumbs/thumbs_00003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00002.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="00002.jpg" alt="00002.jpg" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/thumbs/thumbs_00002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/00001.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="00001.jpg" alt="00001.jpg" src="http://www.pdp11.co.uk/wp-content/gallery/decwriter-iii/thumbs/thumbs_00001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/05/11/decwriter-iii-rebuild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Arrivals: TC11 + TU56, TU55s and an 11/40</title>
		<link>http://www.pdp11.co.uk/blog/2009/04/07/new-arrivals-tc11-tu56-tu55s-and-an-1140/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/04/07/new-arrivals-tc11-tu56-tu55s-and-an-1140/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 16:26:07 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[pdp-11/40]]></category>
		<category><![CDATA[tc11]]></category>
		<category><![CDATA[tu55]]></category>
		<category><![CDATA[tu56]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=138</guid>
		<description><![CDATA[Some highly treasured items have just joined my collection, a TC11 and TU56 together with a further 3 TU55 drives and parts to build up a second 11/40.
I plan to use the TC11 and TU56 on my forthcoming 11/40 rebuild.
]]></description>
			<content:encoded><![CDATA[<p>Some highly treasured items have just joined my collection, a TC11 and TU56 together with a further 3 TU55 drives and parts to build up a second 11/40.</p>
<p>I plan to use the TC11 and TU56 on my forthcoming 11/40 rebuild.</p>
<div id="attachment_139" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pdp11.co.uk/files/2009/04/00028.jpg"><img class="size-medium wp-image-139" src="http://www.pdp11.co.uk/files/2009/04/00028-300x225.jpg" alt="TC11" width="300" height="225" /> </a> <p class="wp-caption-text">TC11</p></div>
<div id="attachment_140" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pdp11.co.uk/files/2009/04/00023.jpg"><img class="size-medium wp-image-140" src="http://www.pdp11.co.uk/files/2009/04/00023-300x225.jpg" alt="TU55" width="300" height="225" /> </a> <p class="wp-caption-text">TU55</p></div>
<div id="attachment_141" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pdp11.co.uk/files/2009/04/00024.jpg"><img class="size-medium wp-image-141" src="http://www.pdp11.co.uk/files/2009/04/00024-300x225.jpg" alt="TU55" width="300" height="225" /> </a> <p class="wp-caption-text">TU55</p></div>
<div id="attachment_142" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pdp11.co.uk/files/2009/04/00025.jpg"><img class="size-medium wp-image-142" src="http://www.pdp11.co.uk/files/2009/04/00025-300x225.jpg" alt="TU55" width="300" height="225" /> </a> <p class="wp-caption-text">TU55</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/04/07/new-arrivals-tc11-tu56-tu55s-and-an-1140/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in LSI land</title>
		<link>http://www.pdp11.co.uk/blog/2009/04/01/adventures-in-lsi-land/</link>
		<comments>http://www.pdp11.co.uk/blog/2009/04/01/adventures-in-lsi-land/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 16:13:07 +0000</pubDate>
		<dc:creator>Toby Russell</dc:creator>
				<category><![CDATA[My Machines]]></category>
		<category><![CDATA[pdp-11/03]]></category>
		<category><![CDATA[pdp-11/23]]></category>
		<category><![CDATA[pdp-11/73]]></category>
		<category><![CDATA[QBUS]]></category>
		<category><![CDATA[rl02]]></category>

		<guid isPermaLink="false">http://www.pdp11.co.uk/?p=134</guid>
		<description><![CDATA[Over the last couple of weeks I have spent most of my available &#8216;PDP&#8217; time bringing rebuilding as many of my QBUS machines as I can.
This has largely been a painless process, largely aided by the set of LSI-11 maintenance manuals I recently got hold of. Compared with their large UNIBUS brothers, the QBUS family [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last couple of weeks I have spent most of my available &#8216;PDP&#8217; time bringing rebuilding as many of my QBUS machines as I can.</p>
<p>This has largely been a painless process, largely aided by the set of LSI-11 maintenance manuals I recently got hold of. Compared with their large UNIBUS brothers, the QBUS family of machines are relatively easy to rebuild as the backplanes are much simpler with no wirewrap and much more generalistic (there are no slots dedicated to a particular peripheral). Often its just a case of planning the board layout using a simple set of rules to determine their placement and all fires up well. When it doesn&#8217;t it is often just a case of reducing the setup to a simple working configuration  and building it back up from there.</p>
<p>For anyone attempting to rebuild a QBUS machines, here are my tips:</p>
<ol>
<li>If you machine is already populated with boards, carefully take note of the locations of each board in your system and then strip all the boards out.</li>
<li>Carefully clean/vacuum the chassis to remove any crud/hair/dust that has built up within it</li>
<li>Apply power to the empty chassis, for 5 seconds, 10 seconds, 30 seconds, 1 minute to confirm the power supply is working. Check the fans are all spinning whilst doing this.</li>
<li>With a multimeter, check all the DC voltages coming from the PSU</li>
<li>If all is well, start with a simple setup of a CPU, memory, SLU and bootstrap. If you are lucky you may have a CPU board with onboard bootstrap and SLU (KDF-11B or KDJ-11B), in which case you will just have to insert 2 cards.</li>
<li>Hook up a console and setup it to the appropriate baud rate for your SLU (9600 baud is the most common if you don&#8217;t know this), set your HALT switch to the down (halt) position.</li>
<li>Power on the machine. If all goes well you should see:173000<br />
@</li>
<li>This is an ODT prompt, an interactive utility that allows you to toggle code into memory and start the CPU running.</li>
<li>Confirm you can write to memory by depositing some values and reading them back. For example:@<strong><em>1000/</em> </strong> 0000000 <strong><em>123123</em> </strong><br />
@<strong><em>1000/</em> </strong> 123123</p>
<p>In the above, the bolder characters are what you need to type. This deposited the value 123123 into location 1000 and then read it back (confirming that the value we had deposited had correctly been stored into memory). Try it for a few locations</li>
<li>If all is well, move the HALT switch to the up position (non-HALTED) and hit restart. If all is well, the machine should now start its bootstrap. If you have a bootstrap board or a KDF-11B you should see a &quot;START ?&quot; prompt. If you have a KDJ-11B, you should see a countdown as it steps through its diagnostics before giving you a menu of options.</li>
<li>If this fails, then you need to look at the status LEDs on your various boards to get clues as to the nature of the failure. These vary from CPU to CPU:
<ul>
<li>KDJ-11B: This has the best diagnostic output in the form of a seven segment display. This should give you a hex number detailing the nature of the problem. If you refer to uPDP-11 documention you should find a table of codes detailing the nature of the fault.</li>
<li>KDJ-11A: 4 LEDs on the CPU card should give you a rough indication of the fault</li>
<li>KDF-11B: 4 LEDS on CPU</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.pdp11.co.uk/blog/2009/04/01/adventures-in-lsi-land/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
