<?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/"
	>

<channel>
	<title>pdp11 &#8211; Virtually Fun</title>
	<atom:link href="https://virtuallyfun.com/category/pdp11/feed/" rel="self" type="application/rss+xml" />
	<link>https://virtuallyfun.com</link>
	<description>Fun with Virtualization</description>
	<lastBuildDate>Tue, 04 Feb 2025 20:57:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>Zork for the PDP-11 / RT-11 recreated</title>
		<link>https://virtuallyfun.com/2023/11/21/zork-for-the-pdp-11-rt-11-recreated/</link>
					<comments>https://virtuallyfun.com/2023/11/21/zork-for-the-pdp-11-rt-11-recreated/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Tue, 21 Nov 2023 22:34:29 +0000</pubDate>
				<category><![CDATA[games]]></category>
		<category><![CDATA[Infocom]]></category>
		<category><![CDATA[pdp11]]></category>
		<category><![CDATA[source code]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=13492</guid>

					<description><![CDATA[I know this is a weird one, but I&#8217;ve always wanted to run Infocom games from ever since I found out it was a thing. I know you maybe thinking of the FORTRAN port of the full Zork game, which &#8230; <a href="https://virtuallyfun.com/2023/11/21/zork-for-the-pdp-11-rt-11-recreated/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I know this is a weird one, but I&#8217;ve always wanted to run Infocom games from ever since I found out it was a thing.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://virtuallyfun.com/wp-content/uploads/2023/11/Zork_I_for_the_PDP-11.jpg"><img fetchpriority="high" decoding="async" width="475" height="716" src="https://virtuallyfun.com/wp-content/uploads/2023/11/Zork_I_for_the_PDP-11.jpg" alt="" class="wp-image-13493" srcset="https://virtuallyfun.com/wp-content/uploads/2023/11/Zork_I_for_the_PDP-11.jpg 475w, https://virtuallyfun.com/wp-content/uploads/2023/11/Zork_I_for_the_PDP-11-199x300.jpg 199w" sizes="(max-width: 475px) 100vw, 475px" /></a><figcaption class="wp-element-caption">The cover of the RT-11 Zork that sold on ebay for $2,348.31</figcaption></figure>
</div>


<p class="wp-block-paragraph">I know you maybe thinking of the FORTRAN port of the full Zork game, which does run on the same system.  But this is NOT the FORTRAN reverse engineered game, rather it&#8217;s a port of the Z-Machine to the RT-11 / PDP-11.</p>



<p class="wp-block-paragraph">Also this is NOT a 3rd party reverse engineering effort, it is the official Infocom Z-Machine source.</p>



<pre class="wp-block-code"><code>;       Proprietary documentation of:
;
;               Infocom, Inc.
;               55 Wheeler St.
;               Cambridge, MA 02138
;
;       Copyright (C) 1982, 1983 Infocom, Inc.  All rights reserved.</code></pre>



<p class="wp-block-paragraph">Yes it&#8217;s the real deal!</p>



<p class="wp-block-paragraph">Ok so what or where to do this?!  First you need SIMH or any other good PDP-11 emulator, a copy of <a href="http://simh.trailing-edge.com/kits/rt11swre.tar.Z">RT-11</a>, and of course the source to the interpreter oddly enough named <a href="https://github.com/erkyrath/infocom-zcode-terps/blob/master/pdp11.zip">PDP11.ZIP</a>.  Just keep in mind that this is NOT a pk-zip file, it&#8217;s a text file.  It&#8217;s Macro-11 assembler source.</p>



<p class="wp-block-paragraph">First you need a very simple config/type in to the SIMH PDP-11 emulator:</p>



<pre class="wp-block-code"><code>attach rk0 rtv4_rk.dsk
attach ptr pdp11.zip
boot rk</code></pre>



<p class="wp-block-paragraph">All being well you should boot into RT-11.</p>



<p class="wp-block-paragraph">Now we copy the source into the machine through the paper tape reader.  Just type in &#8216;COPY PC: ZIP.MAC&#8217;</p>



<pre class="wp-block-code"><code>.COPY PC: ZIP.MAC
 Files copied:
PC:            to DK:ZIP.MAC

.</code></pre>



<p class="wp-block-paragraph">This will create a .mac or macro assembler source file.  The extension matters as it will tell the compiler what file it is and what to do.  But luckily this is a single file, and assembles quite easily.  As a tip to Unix folk, I found that making the assembly source in MS-DOS CR/LF made life easier.</p>



<p class="wp-block-paragraph">Compiling &amp; linking is very straightforward</p>



<pre class="wp-block-code"><code>.COMPILE ZIP.MAC
ERRORS DETECTED:  0

.LINK ZIP.OBJ

. </code></pre>



<p class="wp-block-paragraph">Now we need to import a game file.  I usually test with Planetfall, so I grabbed the data file, and placed it into the working directory and then attached it to the emulator</p>



<pre class="wp-block-code"><code>Simulation stopped, PC: 152644 (BR 152622)
sim> att ptr planetfa
sim> c


.COPY PC: PLANET.IML
 Files copied:
PC:            to DK:PLANET.IML

.</code></pre>



<p class="wp-block-paragraph">Notice the filenames are short, very 8.3 for some strange coincidence!  Also I named it planet.iml, as that is what the interpreter is expecting.  Now we can just run the zip and point it to the game data file!</p>



<pre class="wp-block-code"><code>.RUN ZIP
Line width (default is 80, end with LF for status line):
File name (current default is DK:$GAME$.IML) *dk:planet.iml
PLANETFALL
Infocom interactive fiction - a science fiction story
Copyright (c) 1983 by Infocom, Inc. All rights reserved.
PLANETFALL is a trademark of Infocom, Inc.
Release 37 / Serial number 851003</code></pre>



<figure class="wp-block-image size-large"><a href="https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11.png"><img decoding="async" width="1024" height="547" src="https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11-1024x547.png" alt="" class="wp-image-13494" srcset="https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11-1024x547.png 1024w, https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11-300x160.png 300w, https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11-768x410.png 768w, https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11-500x267.png 500w, https://virtuallyfun.com/wp-content/uploads/2023/11/Planetfall-on-SIMH-via-Infocom-ZIP-for-RT-11.png 1483w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p class="wp-block-paragraph">And there we go!  We are now running Planetfall on our simulated PDP-11!</p>



<p class="wp-block-paragraph">There is quite a few great <a href="https://github.com/erkyrath/infocom-zcode-terps/tree/master">80&#8217;s systems in the github repository</a>, I have no doubt the rest can be built, but I thought I&#8217;d tackle a system that was another bigfoot, a thing of pure legend!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2023/11/21/zork-for-the-pdp-11-rt-11-recreated/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Undocumented Madness &#8211; 2.9BSD on XHomer</title>
		<link>https://virtuallyfun.com/2021/12/30/undocumented-madness-2-9bsd-on-xhomer/</link>
					<comments>https://virtuallyfun.com/2021/12/30/undocumented-madness-2-9bsd-on-xhomer/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Thu, 30 Dec 2021 20:35:10 +0000</pubDate>
				<category><![CDATA[DEC]]></category>
		<category><![CDATA[guest post]]></category>
		<category><![CDATA[pdp11]]></category>
		<category><![CDATA[unix]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=11674</guid>

					<description><![CDATA[This is a guest post by Seal331 Since I&#8217;ve been dealing with XHomer a lot lately in order to get the two dumped VENIX/PRO versions to work, I noticed that the XHomer documentation mentions a thing called &#8220;maintenance mode&#8221; and &#8230; <a href="https://virtuallyfun.com/2021/12/30/undocumented-madness-2-9bsd-on-xhomer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>This is a guest post by Seal331</em></p>



<p class="wp-block-paragraph">Since I&#8217;ve been dealing with XHomer a lot lately in order to get the two dumped VENIX/PRO versions to work, I noticed that the XHomer documentation mentions a thing called &#8220;maintenance mode&#8221; and the DEC Pro port of 2.9BSD, so I was interested.</p>



<p class="wp-block-paragraph">After doing a bit of searching around I found some install notes on www.frijid.net from real hardware, so I decided to adapt these notes for XHomer and install it. TL;DR &#8211; I did it, here I&#8217;m explaining all this stuff.</p>



<h2 class="wp-block-heading">Step 1 &#8211; Acquiring XHomer</h2>



<p class="wp-block-paragraph">XHomer is a DEC Pro 350 emulator that can run P/OS, Venix, 2.9BSD and possibly RT-11, but I didn&#8217;t get to installing the last one yet. There is a statically linked binary but, since I&#8217;m a Gentoo Linux person (but I didn&#8217;t use Gentoo for this particular install)and prefer compiling everything I can, I grabbed the source code (https://xhomer.isani.org/xhomer/xhomer-9-16-06.tgz) and quickly compiled it on my Linux box. It was pretty simple, just install a development toolchain (build-essential on Debian based systems), the libX11 development package (libx11-dev on Debian based systems) and the XShm extension which is included in libxext-dev on Debian based systems. During make it spit out a bunch of warnings but I got a working xhomer binary. Also it kind of messes the xterm settings a bit after being closed, so I&#8217;d recommend running it in a separate xterm window. Since there&#8217;s no install target in the Makefile I just copied the xhomer binary to /usr/bin, and that was it. From here on, I will assume that the XHomer binary is called xhomer and is somewhere in your PATH, if not just modify the way I run XHomer.</p>



<h2 class="wp-block-heading">Step 2 &#8211; Acquiring the distribution</h2>



<p class="wp-block-paragraph">Thanks to the people at the same www.frijid.net site I mentioned earlier, I was able to easily piece together a distribution set. Since we don&#8217;t really rely on how many physical floppies we have with an emulator, I grabbed the recommended root disk set and the 15 disk usr set with the source code, although we won&#8217;t be compiling the kernel in this post. Maybe next one? We&#8217;ll see.</p>



<p class="wp-block-paragraph">The site with the floppies is http://www.frijid.net/download/pro350/bsd/raw/ and here&#8217;s what I used for my install:</p>



<pre class="wp-block-preformatted">box#0/maintenance0.img<br>box#1/usr+k00.img<br>box#1/usr+k01.img<br>box#1/usr+k02.img<br>box#1/usr+k03.img<br>box#1/usr+k04.img<br>box#1/usr+k05.img<br>box#1/usr+k06.img<br>box#1/usr+k07.img<br>box#1/usr+k08.img<br>box#1/usr+k09.img<br>box#1/usr+k10.img<br>box#2/usr+k11.img<br>box#2/usr+k12.img<br>box#2/usr+k13.img<br>box#2/usr+k14.img<br>box#2/usr+k15.img<br>box#2/root1.img<br>box#2/root2.img<br>box#2/root3.img<br>box#2/root4.img<br>box#2/root5.img</pre>



<p class="wp-block-paragraph">The 3 disk usr set in box#2/ doesn&#8217;t include the source, so I didn&#8217;t grab it.<br>The maintenance disks are all the same, so I just grabbed the one in box#0/.<br>The 6 disk root set in box#0/ does include some extra dev files and something that appear to be leftovers from the development DEC Pro, but it&#8217;s missing /bin/ed and /bin/passwd, so I suggest using the 5 disk set instead.</p>



<p class="wp-block-paragraph">There is also box#2/procomm.img which was labeled as containing &#8220;PRO/COMM terminal emulation&#8221; but when I mounted it to install, there was only an empty lost+found directory. Perhaps the original disk had gone bad over the years or someone accidentally reformatted it? We may never know.</p>



<h2 class="wp-block-heading">Step 3 &#8211; XHomer configuration &amp; serial port preparation</h2>



<p class="wp-block-paragraph">Since the maintenance (install) floppy uses a serial terminal interface over the printer port and XHomer only allows us to send its output over serial, I had to do some searching again since most PCs nowadays don&#8217;t have a serial port to use. Thanks to cantoni over at StackOverflow I managed to find instructions for using socat in order to generate a pty, which actually worked for me. At first you need to install socat (bruh) and then run &#8220;socat -d -d pty,raw,echo=0 pty,raw,echo=0&#8221;. Something like this will be printed out on the terminal:</p>



<figure class="wp-block-image size-full"><img decoding="async" width="760" height="96" src="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-1-1.jpg" alt="" class="wp-image-11680" srcset="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-1-1.jpg 760w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-1-1-300x38.jpg 300w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-1-1-500x63.jpg 500w" sizes="(max-width: 760px) 100vw, 760px" /></figure>



<p class="wp-block-paragraph">Then we do a quick test. I use putty to connect to the pty&#8217;s output, in my case it&#8217;s /dev/pts/3. Just use the default settings for serial connection with speed 9600 and the device as /dev/pts/3. If everything goes well, you will get a blank putty terminal window. Don&#8217;t panic, the fact it&#8217;s blank is normal.</p>



<p class="wp-block-paragraph">Let&#8217;s test if our serial port works. Echo something in the pty&#8217;s input, in my case it&#8217;s /dev/pts/4. For example, &#8220;echo &#8220;Test&#8221; &gt; /dev/pts/4&#8243;. If the word &#8220;Test&#8221; appears on the screen, congratulations, you have successfully set up the pty to a point where BSD will happily talk to it when we set up the connection later. !! DO NOT CLOSE THE PUTTY WINDOW AT ANY POINT DURING THE INSTALL UNTIL WE NO LONGER NEED IT (at the initial hd boot) !!</p>



<p class="wp-block-paragraph">Now we configure XHomer. At first, let&#8217;s make a disk image. BSD only supports RD51 or RD50, we&#8217;ll use RD51 as it&#8217;s slightly bigger. If you get the hard disk wrong, BSD will silently hang at boot. Here&#8217;s the command to make a 10MB RD51 disk image for use with XHomer:</p>



<pre class="wp-block-preformatted">dd if=/dev/zero of=29bsd.rd bs=10027008 count=1</pre>



<p class="wp-block-paragraph">Let&#8217;s make the XHomer config file. Note that everything after the symbol | including the symbol itself does not need to be inputed, it&#8217;s just my notes.</p>



<pre class="wp-block-preformatted">screen = window | make the emulator window mode<br>window_position = 0, 0<br>window_scale = 2<br>full_scale = 3<br>screen_gamma = 10<br>pcm = on<br>framebuffers = 0<br>serial0 = /dev/pts/4 | change to your needs, pty input<br>la50 = null<br>la50_dpi = 300<br>kb = lk201<br>ptr = serial0 | DO NOT CHANGE, we'll replace it later when we no longer need serial<br>com = null<br>rd_dir = ./<br>rx_dir = ./<br>rd0 = 29bsd.rd, 4, 306, 16 | change if not using suggested disk<br>force_year = 99 | fix y2k bugs by forcing year to 1999<br>maint_mode = on | DO NOT CHANGE, bsd install uses maintenance mode for terminal<br>int_throttle = off | random workarounds for clocks or older linux systems, we don't need this on new stuff<br>nine_workaround = off<br>libc_workaround = off<br>lp_workaround = off</pre>



<p class="wp-block-paragraph">Save the file as xhomer.cfg.</p>



<p class="wp-block-paragraph">Now run the xhomer binary. If everything goes right, you should have something like this on your screen:</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="340" src="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1-1024x340.jpg" alt="" class="wp-image-11679" srcset="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1-1024x340.jpg 1024w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1-300x100.jpg 300w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1-768x255.jpg 768w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1-1536x510.jpg 1536w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1-500x166.jpg 500w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-2-1.jpg 1581w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure></div>



<p class="wp-block-paragraph">If you didn&#8217;t run the test documented above or changed the string, the &#8220;Test&#8221; string will not be in the terminal or will be some other text, this is all okay.</p>



<h2 class="wp-block-heading">Step 4 &#8211; BSD install</h2>



<p class="wp-block-paragraph">In order to feed floppies to XHomer, you have to use the XHomer control menu. In order to get to it, press Ctrl+F1 when the emulator window has focus. The two floppy drives we need are rx0: and rx1:, these are equivalents of A: and B: in DOS. Insert the maintenance0.img disk in rx0. If all goes okay, the floppy disk picture should disappear from the display window, leaving just the DIGITAL logo. The putty window should then display something like this:</p>



<pre class="wp-block-preformatted">40Boot<br>:</pre>



<p class="wp-block-paragraph">(all following input is in the terminal unless otherwise stated)</p>



<p class="wp-block-paragraph">If all is okay, congratulations, you have booted from the installation diskette. Now type the following in the putty window after the : symbol:</p>



<pre class="wp-block-preformatted">r5(0,0)rdfmt</pre>



<p class="wp-block-paragraph">Then, if you inserted an RD51 10MB disk in the emulator as suggested, type 0 when asked for drive type. If you inserted the 5MB RD50 instead, type 1. If you don&#8217;t know the exact disk sizes and types, refer to the XHomer documentation, specifically the Emulated Hard Disk part. The formatting shouldn&#8217;t take long, then it will dump you back in the 40Boot prompt. Now you need to boot the UNIX kernel, type this in the putty window:</p>



<pre class="wp-block-preformatted">r5(0,0)unix</pre>



<p class="wp-block-paragraph">If everything goes okay, you should have something like this now:</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="331" src="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1-1024x331.jpg" alt="" class="wp-image-11681" srcset="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1-1024x331.jpg 1024w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1-300x97.jpg 300w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1-768x249.jpg 768w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1-1536x497.jpg 1536w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1-500x162.jpg 500w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-3-1.jpg 1662w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure></div>



<p class="wp-block-paragraph">If you get a boot hang instead (like me), restart both XHomer and putty, connect putty back to the pty, then in XHome insert the maintenance0 floppy back and boot the UNIX kernel again. DO NOT FORMAT THE DRIVE AGAIN!!</p>



<h2 class="wp-block-heading">Install time!</h2>



<p class="wp-block-paragraph">At first, create the root filesystem by running:</p>



<pre class="wp-block-preformatted">/etc/mkfs /dev/rrd0a 2240</pre>



<p class="wp-block-paragraph">Then insert the root1 disk in the 2nd floppy drive (rx1) and restore the root filesystem dump from the 5 root set floppies:</p>



<pre class="wp-block-preformatted">restor rf /dev/rr51 /dev/rrd0a</pre>



<p class="wp-block-paragraph">When it says &#8220;Last chance before scribbling on /dev/rrd0a.&#8221; just press Enter.<br>When it says &#8220;Mount volume N&#8221;, just insert the right floppy and press Enter. Volume number == floppy number in this case.</p>



<p class="wp-block-paragraph">After the &#8220;end of tape&#8221; message, verify the rootfs:</p>



<pre class="wp-block-preformatted">/etc/fsck /dev/rrd0a</pre>



<p class="wp-block-paragraph">If it succeeds, create the usr filesystem by running:</p>



<pre class="wp-block-preformatted">/etc/mkfs /dev/rrd0c 6528</pre>



<p class="wp-block-paragraph">Then insert the usr+k00 disk in the 2nd floppy drive (rx1) and restore the usr filesystem dump from the 16 usr set floppies:</p>



<pre class="wp-block-preformatted">restor rf /dev/rr51 /dev/rrd0c</pre>



<p class="wp-block-paragraph">When it says &#8220;Last chance before scribbling on /dev/rrd0c.&#8221; just press Enter.<br>When it says &#8220;Mount volume N&#8221;, just insert the right floppy and press Enter. Floppy number == volume number &#8211; 1 in this case.</p>



<p class="wp-block-paragraph">After the &#8220;end of tape&#8221; message, verify the usr fs:</p>



<pre class="wp-block-preformatted">/etc/fsck /dev/rrd0c</pre>



<p class="wp-block-paragraph">(all following input is in on the Pro display unless otherwise stated)</p>



<p class="wp-block-paragraph">If everything is okay, run sync two times and shut down the emulator. Restart it with only the maintenance floppy in rx0, then type this in the terminal (NOT the Pro display):</p>



<pre class="wp-block-preformatted">rd(0,64)unix</pre>



<p class="wp-block-paragraph">This should boot up Berkeley UNIX (BSD). We&#8217;re not done yet, but it&#8217;s close.</p>



<p class="wp-block-paragraph">Type the following to install the hard disk bootblock:</p>



<pre class="wp-block-preformatted">dd if=/rdboot of=/dev/rrd0h count=17</pre>



<p class="wp-block-paragraph">If everything goes okay, set the root password:</p>



<pre class="wp-block-preformatted">passwd root</pre>



<p class="wp-block-paragraph">Congratulations, you have successfully installed 2.9BSD. Here are the cleanup and hdboot prep stuff:</p>



<p class="wp-block-paragraph">Bring the OS to single user mode:</p>



<pre class="wp-block-preformatted">shutdown +1</pre>



<p class="wp-block-paragraph">(you can close putty now)</p>



<p class="wp-block-paragraph">Then run sync two times and shut down the emulator.</p>



<h2 class="wp-block-heading">Step 5 &#8211; Booting the OS</h2>



<p class="wp-block-paragraph">In order to boot the OS, you need to do the following:</p>



<p class="wp-block-paragraph">Open the xhomer.cfg file;</p>



<p class="wp-block-paragraph">Remove the serial0 = line;</p>



<p class="wp-block-paragraph">Change the ptr = serial0 line to ptr = null;</p>



<p class="wp-block-paragraph">Change the maint_mode = on to maint_mode = off.</p>



<p class="wp-block-paragraph">Then save, after running XHomer you should be able to just log in.</p>



<p class="wp-block-paragraph">Congratulations, you have successfully installed 2.9BSD for the DEC Pro 350! Sadly it&#8217;s pretty unstable, and due to emulation issues in XHomer vi completely crashes BSD, but there&#8217;s always ed <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="495" src="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-4-1-1024x495.jpg" alt="" class="wp-image-11682" srcset="https://virtuallyfun.com/wp-content/uploads/2021/12/picture-4-1-1024x495.jpg 1024w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-4-1-300x145.jpg 300w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-4-1-768x371.jpg 768w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-4-1-500x242.jpg 500w, https://virtuallyfun.com/wp-content/uploads/2021/12/picture-4-1.jpg 1035w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">Appendix A &#8211; Transferring Files</h2>



<p class="wp-block-paragraph">In order to transfer the files (up to 400KB per file) you will need some additional utilities. Here&#8217;s a guide on how to install them:</p>



<p class="wp-block-paragraph">(the following steps are done on the Linux host side)</p>



<ol class="wp-block-list"><li>Grab the following files:</li></ol>



<p class="wp-block-paragraph"><a href="https://xhomer.isani.org/xhomer/BSD/f2rx" target="_blank" rel="noreferrer noopener">https://xhomer.isani.org/xhomer/BSD/f2rx<br></a><a href="https://xhomer.isani.org/xhomer/BSD/rx2f.c" target="_blank" rel="noreferrer noopener">https://xhomer.isani.org/xhomer/BSD/rx2f.c<br></a><a href="https://xhomer.isani.org/xhomer/BSD/lbn2xhomer.c" target="_blank" rel="noreferrer noopener">https://xhomer.isani.org/xhomer/BSD/lbn2xhomer.c</a></p>



<ol class="wp-block-list" start="2"><li>Apply the following patch to lbn2xhomer.c:</li></ol>



<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<pre class="wp-block-preformatted">--- lbn2xhomer.c   2015-07-05 07:51:19.000000000 +0300
+++ lbn2xhomer.c        2021-12-30 17:13:28.539768500 +0300
@@ -25,6 +25,7 @@

 #include &lt;string.h>
 #include &lt;stdio.h>
+#include &lt;stdlib.h>

 #define SECSIZE                512
 #define SECTORS                10
@@ -66,7 +67,7 @@
   if (fptr_v == NULL)
   {
     printf("Unable to open %s\n", argv[1]);
-    exit();
+    exit(1);
   }

   fptr_x = fopen(argv[2], "w");</pre>
</div></div>
</div></div>



<ol class="wp-block-list"><li>Compile lbn2xhomer:</li></ol>



<pre class="wp-block-preformatted">cc -o lbn2xhomer lbn2xhomer.c</pre>



<ol class="wp-block-list" start="4"><li>Set up f2rx for operation:</li></ol>



<pre class="wp-block-preformatted">chmod +x f2rx</pre>



<ol class="wp-block-list" start="5"><li>Make a floppy image with the BSD side utility:</li></ol>



<pre class="wp-block-preformatted">./f2rx rx2f.c</pre>



<ol class="wp-block-list" start="6"><li>Run XHomer and attach the generated rx2f.c.dsk to rx0</li></ol>



<p class="wp-block-paragraph">(the following steps are done on the BSD side)</p>



<ol class="wp-block-list" start="7"><li>Grab the file from the floppy:</li></ol>



<pre class="wp-block-preformatted">dd if=/dev/r50 of=rx2f.c skip=18 bs=1 count=891</pre>



<ol class="wp-block-list" start="8"><li>Compile the utility:</li></ol>



<pre class="wp-block-preformatted">cc -o rx2f rx2f.c</pre>



<p class="wp-block-paragraph">You&#8217;re now ready to transfer files.</p>



<p class="wp-block-paragraph">Short file transfer handbook:</p>



<ol class="wp-block-list"><li>Run f2rx FILE on the host box, FILE being the file to use;</li><li>Insert FILE.dsk into rx0 on XHomer;</li><li>Run rx2f on the BSD side.</li></ol>



<h2 class="wp-block-heading">Appendix B &#8211; Init: no more children issue workaround</h2>



<p class="wp-block-paragraph">On some hosts, programs from the install floppy may randomly die with the &#8220;no more children&#8221; message. A workaround is to disable RTC mode and enable IOTRACE mode in the XHomer Makefile and recompile, leading to a much more slower (due to accurate timing) and working XHomer. After the installation, you can revert to normal settings and it should work, as the programs installed on the hard drive to not appear to suffer from the same issue.</p>



<h2 class="wp-block-heading">Appendix C &#8211; Sequels</h2>



<p class="wp-block-paragraph">Possibly coming soon to VirtuallyFun:</p>



<p class="wp-block-paragraph">Undocumented Madness 2 &#8211; Big hard drives on 2.9BSD XHomer<br>Undocumented Madness 3 &#8211; Custom Kernel on 2.9BSD XHomer</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2021/12/30/undocumented-madness-2-9bsd-on-xhomer/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Confessions of a paranoid DEC Engineer: Robert Supnik talks about the great Dungeon heist!</title>
		<link>https://virtuallyfun.com/2019/08/05/confessions-of-a-paranoid-dec-engineer-robert-supnik-talks-about-the-great-dungeon-heist/</link>
					<comments>https://virtuallyfun.com/2019/08/05/confessions-of-a-paranoid-dec-engineer-robert-supnik-talks-about-the-great-dungeon-heist/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Mon, 05 Aug 2019 00:39:20 +0000</pubDate>
				<category><![CDATA[64bit computing]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[cats]]></category>
		<category><![CDATA[Colossal Cave]]></category>
		<category><![CDATA[D|i|g|i|t|a|l]]></category>
		<category><![CDATA[DEC]]></category>
		<category><![CDATA[DEC Alpha]]></category>
		<category><![CDATA[Digitial]]></category>
		<category><![CDATA[Fortran]]></category>
		<category><![CDATA[Infocom]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[itanium]]></category>
		<category><![CDATA[pdp11]]></category>
		<category><![CDATA[PDP8]]></category>
		<category><![CDATA[SIMH]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[VAX]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[Zork]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9678</guid>

					<description><![CDATA[What an incredible adventure! Apparently this was all recorded in 2017, and just now released. It&#8217;s very long, but I would still highly recommend watching the full thing. Part 1 : 3 hours, 21 minutes Part 2 : 2 hours, &#8230; <a href="https://virtuallyfun.com/2019/08/05/confessions-of-a-paranoid-dec-engineer-robert-supnik-talks-about-the-great-dungeon-heist/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[
<iframe loading="lazy" width="560" height="315" src="https://www.youtube.com/embed/lk7ygEZxV9Q?start=9357" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>



<p class="wp-block-paragraph">What an incredible adventure!</p>



<p class="wp-block-paragraph">Apparently this was all recorded in 2017, and just now released.</p>



<p class="wp-block-paragraph">It&#8217;s very long, but I would still highly recommend watching the full thing.</p>



<ul class="wp-block-list"><li><a href="https://www.youtube.com/watch?v=T3tcCBHRIfU">Part 1 :  3 hours, 21 minutes</a></li><li><a href="https://www.youtube.com/watch?v=lk7ygEZxV9Q">Part 2 : 2 hours, 45 minutes</a></li></ul>



<p class="wp-block-paragraph">Bob goes into detail about the rise of the integrated circuit versions of the PDP-11 &amp; VAX processors, the challenges of how Digital was spiraling out of control, and how he was the one that not only championed the Alpha, but had to make the difficult decisions that if the Alpha succeeded that many people were now out of a job, and many directions had to be closed off.</p>



<p class="wp-block-paragraph">He goes into great detail how the Alpha was basically out maneuvered politically and how the PC business had not only dragged them down by management not embracing the Alpha but how trying to pull a quick one on Intel led to their demise.</p>



<p class="wp-block-paragraph">Also of interest was his time in research witnessing the untapped possibilities of AltaVista, and how Compaq had bogged it down, and ceded the market to the upstart Google, the inability to launch a portable MP3 player (Although to be fair the iPod wasn&#8217;t first to market by a long shot, it was the best user experience by far).</p>



<p class="wp-block-paragraph">What was also interesting was his last job, working at Unisys and getting them out of the legacy mainframe hardware business and into emulation on x86, along with the lesson that if you can run your engine in primary CPU cache it&#8217;s insanely fast (in GCC land -Os is better than -O9).</p>



<p class="wp-block-paragraph">The most significant part towards the end of course is where he &#8216;rewinds&#8217; his story to go into his interest in simulations, and of course how he started <a href="http://simh.trailing-edge.com/">SIMH</a> when he had some idle time in the early 90&#8217;s.  SIMH of course has done an incredible amount of work to preserve computing history of many early computers.  He also touches on working with the Warren&#8217;s TUHS to get <a href="https://github.com/DoctorWkt/pdp7-unix">Unix v0 up and running on a simulated PDP-7</a> and what would have been a challenge in the day using an obscure Burroughs disk &amp; controller modified from the PDP-9. </p>



<p class="wp-block-paragraph">Yes it&#8217;s 6 hours long!  But really it&#8217;s great!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2019/08/05/confessions-of-a-paranoid-dec-engineer-robert-supnik-talks-about-the-great-dungeon-heist/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>IOCCC 2018 Best of show, aka PDP-7 emulation in under 4kb!</title>
		<link>https://virtuallyfun.com/2018/05/17/ioccc-2018-best-of-show-aka-pdp-7-pdp-11-emulation-in-under-4kb/</link>
					<comments>https://virtuallyfun.com/2018/05/17/ioccc-2018-best-of-show-aka-pdp-7-pdp-11-emulation-in-under-4kb/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Thu, 17 May 2018 14:03:31 +0000</pubDate>
				<category><![CDATA[pdp11]]></category>
		<category><![CDATA[unix]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=8427</guid>

					<description><![CDATA[The most incredible thing about this PDP-7 emulator is that it not only can run Unix v0 as recovered by TUHS, but for kicks there is also a PDP-11 emulator coded in PDP-7 assembly that is capable of running both &#8230; <a href="https://virtuallyfun.com/2018/05/17/ioccc-2018-best-of-show-aka-pdp-7-pdp-11-emulation-in-under-4kb/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>The most incredible thing about this PDP-7 emulator is that it not only can run Unix v0 as recovered by TUHS, but for kicks there is also a PDP-11 emulator coded in PDP-7 assembly that is capable of running both Unix v6 &amp; 2.9BSD!</p>
<blockquote><p>So if I have a PDP-7 emulator, how do I run operating systems that expect a PDP-11? Simpleâ€¦ I emulate a PDP-11/40 on the PDP-7. I have written PDP-7 assembler code to emulate a PDP-11/40 with the following equipment:</p>
<p>PDP-11/40 (KD11-A)<br />
EIS instruction set (KE11-E)<br />
Memory management unit (KJ11-A)<br />
Line time clock (KT11-D)<br />
124 Kwords of memory (244 Kbytes)<br />
RK05 fixed disk drive (RK11)<br />
Console TTY (DL11)</p></blockquote>
<p>And as you can see, here is the PDP-7 running 2.9BSD via the emulated PDP-11!</p>
<p><a href="https://virtuallyfun.com/wp-content/uploads/2018/05/Screen-Shot-2018-05-17-at-9.46.29-PM.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-8428" src="https://virtuallyfun.com/wp-content/uploads/2018/05/Screen-Shot-2018-05-17-at-9.46.29-PM.png" alt="" width="517" height="183" /></a></p>
<p>You read that right.Â  And yes, here it is running 2.9BSD.Â  This is nothing short of amazing!</p>
<p>Read about Christopher Mills&#8217;s entry here:</p>
<p><a href="http://ioccc.org/2018/mills/hint.html">http://ioccc.org/2018/mills/hint.html</a></p>
<p>And yes, the source has been stylized like a paper tape&#8230;</p>
<p><a href="https://virtuallyfun.com/wp-content/uploads/2018/05/Screen-Shot-2018-05-17-at-9.52.45-PM.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-8429" src="https://virtuallyfun.com/wp-content/uploads/2018/05/Screen-Shot-2018-05-17-at-9.52.45-PM.png" alt="" width="189" height="240" /></a></p>
<p>It really works best on a &#8216;real&#8217; Unix like system.Â  I&#8217;ve run it on Debian 9 &amp; OS X 10.13.14 &#8230; It does consume 100% of a CPU core.Â  But it&#8217;ll run a PDP-7 with v0 Unix, PDP-11 with Unix v6, and the aforementioned 2.9BSD. The Linux subsystem for Windows 10 didn&#8217;t handle the terminal control so well.</p>
<p>So, yeah kill your CPU and bask in the 4k glory!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2018/05/17/ioccc-2018-best-of-show-aka-pdp-7-pdp-11-emulation-in-under-4kb/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Apout on Windows</title>
		<link>https://virtuallyfun.com/2014/10/25/apout-on-windows/</link>
					<comments>https://virtuallyfun.com/2014/10/25/apout-on-windows/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Sat, 25 Oct 2014 11:53:22 +0000</pubDate>
				<category><![CDATA[pdp11]]></category>
		<category><![CDATA[syscall emulation]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[Win32]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=4636</guid>

					<description><![CDATA[I read somewhere that kids these days are interested in games where you can modify how the game operates with sub programs written in their own languages etc. So while this does sound interesting, it does remind me of that &#8230; <a href="https://virtuallyfun.com/2014/10/25/apout-on-windows/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I read somewhere that kids these days are interested in games where you can modify how the game operates with sub programs written in their own languages etc.</p>
<p><div id="attachment_4639" style="width: 367px" class="wp-caption alignright"><a href="https://virtuallyfun.com/wp-content/uploads/2014/10/hello-from-unix-v7.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4639" class="size-full wp-image-4639" src="https://virtuallyfun.com/wp-content/uploads/2014/10/hello-from-unix-v7.png" alt="Hello from Unix v7" width="357" height="1945" /></a><p id="caption-attachment-4639" class="wp-caption-text">Hello</p></div></p>
<p>So while this does sound interesting, it does remind me of that good old fashioned syscall emulation, where you emulate the CPU, load an executable, but any system calls that are made, are handled by the simulator, little if any hardware is actually emulated. Yes Basilisk II is an example of this, but so is Wine, WOW, NTVDM, i386 code on x64 platforms, and various others. The major advantage is that they typically can access your native file system so you don&#8217;t have to mess with virtual disks. Of course it all depends on the implementation.</p>
<p>I did remember this old simulator, <a href="http://minnie.tuhs.org/Archive/PDP-11/Emulators/Apout/">Apout</a>, which could run UNIX v6, 7 along with BSD 2.9 stuff on modern Unix. The emulation layer here being LIBC, and how pretty much the basics of how UNIX operates hasn&#8217;t changed since those ancient days in the 1970&#8217;s.</p>
<p>So I thought I&#8217;d try to see how much of this works on Win32 using Microsoft Visual C++ 5. And surprisingly I didn&#8217;t have to glue in that much, the biggest thing I had to do was trying to detect if a file about to be opened was ASCII or BINARY as the UNIX platform doesn&#8217;t distinguish these two but Win32 with it&#8217;s MS-DOS legacy does. As you can see I did get the banner program running, some of the games work ok, although I had to comment out the sgtty functions as there is no immediate equivalent on Windows, and I didn&#8217;t think there would be that much of a demand for such a thing anyways. I can even run the login program. Which brings me to the issue which is that it&#8217;ll spawn new programs fine, but when an exit is called Apout just exits. Even on Linux it&#8217;ll just do this. I tried doing something with setjmp/longjmp but it crashes shortly afterwards&#8230; No doubt some stack unwinding fun. As such trying to compile things just bomb out. I went ahead and took the source code to cc and made a native Win32 version that then calls apout for the various parts and that almost worked except I then found out that the assembler on the PDP-11 is a 2 pass assembler, written in assembly. And yes, when as calls as2, and unwinds all hell breaks loose. Which is another problem that UNIX likes to share file descriptors among itself and children, but children like to close things when they die. I guess the solution is to give each child it&#8217;s own descriptor table as everyone likes to close stdin/stdout/stderr and even #4, which the simulator uses for logging. it&#8217;s very annoying so I just prevented it from closing handles under 4.</p>
<p>But running each of the phases manually does get me an executable but it doesn&#8217;t seem to do anything, the only syscalls are closing all the file handles and exiting.</p>
<p>So close!</p>
<p>I don&#8217;t think anyone will care, but here is my <a href="http://vpsland.superglobalmegacorp.com/old/install/UNIX/apout-nt.7z">source/binary</a> along with Unix v7. It&#8217;s hard coded to dump stuff into c:\temp for temporary files, the Unix v7 must be in c:\v7 &#8230; ugh.</p>
<p><div id="attachment_4647" style="width: 661px" class="wp-caption alignright"><a href="https://virtuallyfun.com/wp-content/uploads/2014/10/hunt-the-wumpus.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4647" class="size-full wp-image-4647" src="https://virtuallyfun.com/wp-content/uploads/2014/10/hunt-the-wumpus.png" alt="Hunt the wumpus on NT" width="651" height="329" /></a><p id="caption-attachment-4647" class="wp-caption-text">Hunt the wumpus on NT</p></div></p>
<p>But yeah, you can play that thrilling game from 1979, hunt the wumpus!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2014/10/25/apout-on-windows/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>As part of the retrochallenge 2012, there is a PDP-11 running 2.11 BSD out there!</title>
		<link>https://virtuallyfun.com/2012/06/25/as-part-of-the-retrochallenge-2012-there-is-a-pdp-11-running-2-11-bsd-out-there/</link>
					<comments>https://virtuallyfun.com/2012/06/25/as-part-of-the-retrochallenge-2012-there-is-a-pdp-11-running-2-11-bsd-out-there/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Mon, 25 Jun 2012 18:32:00 +0000</pubDate>
				<category><![CDATA[DEC]]></category>
		<category><![CDATA[Digitial]]></category>
		<category><![CDATA[pdp11]]></category>
		<category><![CDATA[random updates]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=2117</guid>

					<description><![CDATA[No, really! You can get an account, just sign up here! Sander Reiche has setup a MicroPDP-11/83 with the following specs: M8190-AB KDJ11-BB M7551-BH MSV11-QB M7546 TK50 CONTROLLER M7555 RQDX3 M7516-YM DELQA So far there are FOUR users.. which means &#8230; <a href="https://virtuallyfun.com/2012/06/25/as-part-of-the-retrochallenge-2012-there-is-a-pdp-11-running-2-11-bsd-out-there/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>No, really!</p>
<p>You can get an account, just sign up <a href="http://ls-al.eu/~reiche/retro2012.html">here</a>!</p>
<p><a href="http://ls-al.eu/~reiche/">Sander Reiche</a> has setup a MicroPDP-11/83 with the following specs:</p>
<ul>
<li><a href="http://bitsavers.org/scandocs.trailing-edge.com/micropdp11-volume1_system_cpus-EK-247AA-MG-001.pdf">M8190-AB KDJ11-BB</a></li>
<li><a href="http://www.bitsavers.org/pdf/dec/qbus/EK-MSV1Q-UG-002_MSV11Q_5-85.pdf">M7551-BH MSV11-QB</a></li>
<li><a href="http://www.bitsavers.org/pdf/dec/magtape/tk50/EK-0TK50-TM-002_Jul86.pdf">M7546 TK50 CONTROLLER</a></li>
<li><a href="http://www.bitsavers.org/pdf/dec/qbus/fiche/EK-RQDX3-UG-001_Nov85.pdf">M7555 RQDX3</a></li>
<li><a href="http://www.bitsavers.org/pdf/dec/qbus/EK-DELQA-UG-002.pdf">M7516-YM DELQA</a></li>
</ul>
<p>So far there are FOUR users.. which means you can get in on the action for sure!</p>
<p>For those of you who want a sandboxed version at home, you can download my install <a href="http://sourceforge.net/projects/bsd42/files/4BSD%20under%20Windows/v0.4/211BSD.zip/download">here</a>, which of course I touched on a <a href="https://virtuallyfun.com/?p=270">while back</a>.</p>
<p>For those unfamiliar, here is what <a href="http://retrochallenge.org/">retrochallenge</a> is all about!</p>
<ol>
<li>RetroChallenge commences July 1st, 2012 and runs until July 31st, 2012.</li>
<li>In order to qualify, computer systems must by approximately 10 years old (or older!)â€¦ in general, this means 486 or below, 680Ã—0 and pretty much everything with an 8-bit processor, but weâ€<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />ll also let you in if you have an old Cray kicking about, and exceptions can always be made for exotica!</li>
<li>Gaming consoles and PDAs qualify if they were made in the previous century.</li>
<li>Where appropriate, replica hardware and emulators may be used.</li>
<li>Entrants are responsible for adequately documenting their projects and submitting occasional updates during the contest.</li>
<li>Projects may encompass any aspect of retro-computing that tickles the fancy of the individual entrant.</li>
<li>Winners will be carefully selected and thoughtfully chosen prizes presented (hopefully before the next challenge commences).</li>
<li>Have fun!</li>
</ol>
<p>Sadly I don&#8217;t have anything physical around here that really qualifies. Â A G5 mac is too new, and I recently picked up a Pentium 150 based IBM Aptiva, but its too new apparently&#8230;.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2012/06/25/as-part-of-the-retrochallenge-2012-there-is-a-pdp-11-running-2-11-bsd-out-there/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title>Follow up on Dungeon (zork) for RT-11</title>
		<link>https://virtuallyfun.com/2011/08/26/follow-up-on-dungeon-zork-for-rt-11/</link>
					<comments>https://virtuallyfun.com/2011/08/26/follow-up-on-dungeon-zork-for-rt-11/#respond</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Fri, 26 Aug 2011 16:00:09 +0000</pubDate>
				<category><![CDATA[pdp11]]></category>
		<category><![CDATA[SIMH]]></category>
		<category><![CDATA[Zork]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=1298</guid>

					<description><![CDATA[I have documented the install steps back here, a long while back.  However recently I did get a request for a binary for this for someone to try to load up on a physical PDP-11.  The steps sure are daunting &#8230; <a href="https://virtuallyfun.com/2011/08/26/follow-up-on-dungeon-zork-for-rt-11/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I have documented the install steps back here, a long while back.  However recently I did get a request for a binary for this for someone to try to load up on a physical PDP-11.  The steps sure are daunting and of course time consuming for a first-time user, so while I was building dungeon again, I thought I should take this opportunity to package this up and make it more accessible for everyone.</p>
<p><a href="http://vpsland.superglobalmegacorp.com/install/simh/rt11dungeon.7z">This</a> is the output of my &#8216;effort&#8217; although the real thanks to this goes to Bob Supnik ,not only for writing <a href="http://simh.trailing-edge.com/">SIMH</a> making it possible, but also for porting <a href="http://gunkies.org/wiki/Zork">Dungeon</a> to <a href="http://en.wikipedia.org/wiki/Fortran">Fortran</a> way back then.</p>
<p>Extract the archive using <a href="http://vpsland.superglobalmegacorp.com/install/7zip.exe">7zip</a>, then run pdp11.exe and it should boot you up into <a href="http://en.wikipedia.org/wiki/RT-11">RT-11</a>.  Then just type in</p>
<blockquote><p>RUN DUNGEON</p></blockquote>
<p>And you should be teleported to the open field west of a big white house with a boarded front door&#8230;</p>
<p><div id="attachment_1299" style="width: 670px" class="wp-caption aligncenter"><a href="https://virtuallyfun.com/wp-content/uploads/2011/08/rt11-dungeon.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1299" class="size-full wp-image-1299" title="rt11 dungeon" src="https://virtuallyfun.com/wp-content/uploads/2011/08/rt11-dungeon.png" alt="" width="660" height="340" /></a><p id="caption-attachment-1299" class="wp-caption-text">Open Mailbox</p></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/08/26/follow-up-on-dungeon-zork-for-rt-11/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>RetroBSD!</title>
		<link>https://virtuallyfun.com/2011/08/11/retrobsd/</link>
					<comments>https://virtuallyfun.com/2011/08/11/retrobsd/#respond</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 21:36:13 +0000</pubDate>
				<category><![CDATA[4.2 BSD]]></category>
		<category><![CDATA[MIPS]]></category>
		<category><![CDATA[pdp11]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=1229</guid>

					<description><![CDATA[Wow isn&#8217;t that cool? Who needs a &#8216;basic stamp&#8217; if you can have UNIX!  Not to mention it&#8217;s from Serge Vakulenko, of DEMOS fame! From the main site: RetroBSD is a port of 2.11BSD Unix intended for embedded systems with fixed memory mapping. &#8230; <a href="https://virtuallyfun.com/2011/08/11/retrobsd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[
<pre class="wp-block-code"><code>2.11 BSD Unix for PIC32, build #826:
     Compiled 2011-08-07 by vak@Cobra.local:
     /Volumes/Users/vak/Project/retrobsd/trunk/sys/pic32/compile
phys mem  = 128 kbytes
user mem  = 96 kbytes
root dev  = (0,0)
root size = 16384 kbytes
swap size = 2048 kbytes
standard daemons: update.
Sun Aug  7 16:47:45 PST 2011

2.11 BSD UNIX (pic32) (console)

login: root
Password:
Welcome to RetroBSD!
# _</code></pre>



<p class="wp-block-paragraph">Wow isn&#8217;t that cool? Who needs a &#8216;basic stamp&#8217; if you can have UNIX!  Not to mention it&#8217;s from <a href="https://plus.google.com/110426728912748300178/posts">Serge Vakulenko</a>, of <a href="https://virtuallyfun.com/?p=437">DEMOS fame</a>!</p>



<p class="wp-block-paragraph">From <a href="http://code.google.com/p/retrobsd/wiki/About">the main site</a>:</p>



<p class="wp-block-paragraph">RetroBSD is a port of <a href="http://en.wikipedia.org/wiki/Bsd" rel="nofollow">2.11BSD</a> Unix intended for embedded systems with fixed memory mapping. The current target is <a href="http://www.microchip.com/en_US/family/pic32/" rel="nofollow">Microchip PIC32</a>microcontroller with 128 kbytes of RAM and 512 kbytes of Flash. PIC32 processor has <a href="http://www.mips.com/products/cores/32-64-bit-cores/mips32-m4k/" rel="nofollow">MIPS M4K</a> architecture, executable data memory and flexible RAM partitioning between user and kernel modes.</p>



<p class="wp-block-paragraph">Main features:</p>



<ul class="wp-block-list">
<li>Small resource requirements. RetroBSD requires only 128 kbytes of RAM to be up and running user applications.</li>



<li>Memory protection. Kernel memory is fully protected from user application using hardware mechanisms.</li>



<li>Open functionality. Usually, user application is fixed in Flash memory &#8211; but in case of RetroBSD, any number of applications could be placed into SD card, and run as required.</li>



<li>Real multitasking. Standard POSIX API is implemented (fork, exec, wait4 etc).</li>



<li>Development system on-board. It is possible to have C compiler in the system, and to recompile the user application (or the whole operating system) when needed.</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/08/11/retrobsd/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PDP-11 in javascript!</title>
		<link>https://virtuallyfun.com/2011/05/01/pdp-11-in-javascript/</link>
					<comments>https://virtuallyfun.com/2011/05/01/pdp-11-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Sun, 01 May 2011 07:48:00 +0000</pubDate>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[pdp11]]></category>
		<category><![CDATA[unix]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=438</guid>

					<description><![CDATA[I&#8217;m not kidding. I found it looking for ”stuff”. Check it out here (old mirror). And yes, it runs UNIX. WOW.]]></description>
										<content:encoded><![CDATA[<p>I&#8217;m not kidding. I found it looking for ”stuff”.</p>
<p>Check it out <a href="https://virtuallyfun.com/pdp11/" target="_blank" rel="noopener">here</a> (<a href="http://pdp11.aiju.de/">old mirror)</a>.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="margin-left: 1em; margin-right: 1em;" href="http://4.bp.blogspot.com/-mgBe7qPY6kQ/Tb0QQCCMcII/AAAAAAAAFkA/2668GX-xelY/s1600/pdp11%2Bjava%2Bscript.png"><img loading="lazy" decoding="async" src="http://4.bp.blogspot.com/-mgBe7qPY6kQ/Tb0QQCCMcII/AAAAAAAAFkA/2668GX-xelY/s400/pdp11%2Bjava%2Bscript.png" width="400" height="129" border="0" /></a></div>
<p>And yes, it runs UNIX.</p>
<p>WOW.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/05/01/pdp-11-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>DEMOS on the PDP-11 in SIMH</title>
		<link>https://virtuallyfun.com/2011/05/01/demos-on-the-pdp-11-in-simh/</link>
					<comments>https://virtuallyfun.com/2011/05/01/demos-on-the-pdp-11-in-simh/#comments</comments>
		
		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Sun, 01 May 2011 07:44:00 +0000</pubDate>
				<category><![CDATA[demos]]></category>
		<category><![CDATA[pdp11]]></category>
		<category><![CDATA[russian]]></category>
		<category><![CDATA[Windows 95]]></category>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=437</guid>

					<description><![CDATA[While looking around again for more DEMOS stuff (not to be confused with &#8216;demo&#8217; argh!) I found Serge Vakulenko&#8217;s ready to run DEMOS 3.0 for the PDP-11/SIMH package! And I think this is the corresponding source code. More information can &#8230; <a href="https://virtuallyfun.com/2011/05/01/demos-on-the-pdp-11-in-simh/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: center;"><a href="https://virtuallyfun.com/wp-content/uploads/2011/05/better-login-pdp11-DEMOS-3.png"><img loading="lazy" decoding="async" class="alignleft size-full wp-image-474" title="login pdp11 DEMOS 3" src="https://virtuallyfun.com/wp-content/uploads/2011/05/better-login-pdp11-DEMOS-3.png" alt="DEMOS 3 on SIMH's PDP-11 / on Windows 95 Russian" width="644" height="484" /></a></div>
<p>While looking around again for more DEMOS stuff (not to be confused with &#8216;demo&#8217; argh!) I found  Serge Vakulenko&#8217;s ready to run DEMOS 3.0 for the <a href="http://code.google.com/p/vak-opensource/downloads/detail?name=dvk-demos.zip&amp;can=2&amp;q=">PDP-11/SIMH package</a>!  And I think this is the <a href="ftp://ftp.besm6.org/pub/archives/d22.tar.gz">corresponding source code</a>.  More information can be found on what I think is <a href="http://ramlamyammambam.livejournal.com/">Serge&#8217;s blog</a>.</p>
<p>Now on to running it.</p>
<p>The good news is that I only needed msvcrt.dll from Visual C++ 4.0 to get it to run under Windows 95.. The &#8216;bad&#8217; news well for me is that I couldn&#8217;t think of a good telnet to do Cyrillic/KOI8-R properly.  I&#8217;ll admit it&#8217;s probably me not knowing how to do it correctly.  At the same time, I figured the &#8216;easy&#8217; way out is to just install some Russian version of Windows.  Naturally there is the &#8216;dual keyboard&#8217; layout thing in Windows, which if you can&#8217;t read the default language&#8230; well. it&#8217;s too intimidating.  But with enough mousing around I pulled the Russian keyboard out and it seems to operate fine.</p>
<p>There is of course some information <a href="http://ache.vniz.net/demos.html">here</a>, but the mechanical translation is rought..  The <a href="http://en.wikipedia.org/wiki/DEMOS">wiki</a> page still talks of 68020 and VAX ports of Demos (among others) I wonder if they&#8217;ll ever surface?</p>
<p style="text-align: center;"><a href="https://virtuallyfun.com/wp-content/uploads/2011/05/1988_500-unax.jpg"><img loading="lazy" decoding="async" class="size-full wp-image-477 aligncenter" title="1988_500-unax" src="https://virtuallyfun.com/wp-content/uploads/2011/05/1988_500-unax.jpg" alt="Demos Team in Moscow" width="500" height="392" /></a></p>
<p>The <a href="http://www.fid.su/museum/hall1/11/">DEMOS team</a>.</p>
<p>I&#8217;ve even found comprehensive documentation for both Ð”ÐµÐ¼Ð¾Ñ and Xenix of all things <a href="http://lib.ru/MAN/">here</a>.</p>
<p>And to round things off, here is a mechanical translation (thanks google!) of the readme&#8230;.</p>
<blockquote><p>1. SETTING THE OPERATING SYSTEM DEMOS<br />
====================================</p>
<p>This section describes the procedures to be you-<br />
satisfied, as when you first install the system, and in the case<br />
&#8220;Complete destruction&#8221; of the root file system or replacement<br />
hard disk is described by the root file system and non-<br />
which directories.</p>
<p>The process of preparing the system for operation can be separated by<br />
pour into the following stages:<br />
&#8211; The primary installation (or recovery) system<br />
distribution set to floppy disks (FDD);<br />
&#8211; Loading system and checking its integrity;<br />
&#8211; Set up the system files.<br />
If &#8220;partial destruction of the&#8221; filesystems recom-<br />
is to try to restore the integrity of the program fsck<br />
(See Annex 2).</p>
<p>1.1. Initial installation of the system<br />
===========================<br />
For the initial installation of the system must:<br />
&#8211; Tumbler &#8220;NETWORK&#8221; to include personal computers;<br />
&#8211; Insert a floppy disk with the number 0 (the starting disk) in the<br />
top device (null);<br />
&#8211; Received an invitation to &#8220;@&#8221;, press (b), and then<br />
in response to an invitation, &#8220;$&#8221; (dollar) to introduce &#8220;MY0&#8221; (or &#8220;MY&#8221; and<br />
press (VC));<br />
&#8211; After a while the screen will receive invitations<br />
of &#8220;BOOT :&#8230;&#8221;; in response to it, you must press<br />
(VC);<br />
&#8211; The query &#8220;installing DEMOS requires erasing infor-<br />
tion on the hard disk &#8230; &#8220;to answer&#8221; Y &#8220;(YES) and on-<br />
press key (VC); cancel mistyped character (up to<br />
pressing (VC)) may be using the (BZ);<br />
&#8211; On request &#8220;Enter the time &#8230;&#8221; necessary to introduce 10<br />
digits and press (VC); time is given as follows-<br />
Thus:<br />
ggmmddchchmm,<br />
where he &#8211; the last two digits of the year (eg, 90);<br />
mm &#8211; month number (from 01 to 12);<br />
dd &#8211; day of the month;<br />
hh &#8211; hour (00 to 23);<br />
mm &#8211; minute (00 to 59);<br />
&#8211; The query &#8220;capacity hard disk drive &#8230;&#8221;<br />
must enter the number &#8211; the number of drive type and press<br />
key (VC); type of drive is defined as follows:</p>
<p>1. 5 MB 153 cylinder / 0-152 / &#8211; Set Database RUBIN impossible<br />
2. 10 MB 306 Cylinders / 0-305 / &#8211; Set the database RUBIN impossible<br />
3. 10 MB 306 Cylinders / 0-305 / &#8211; Set the database RUBIN possible<br />
4. 20 MB 612 Cylinders / 0-611 / &#8211; Set the database RUBIN possible</p>
<p>&#8211; More on request &#8220;format the hard drive?&#8221; necessary-<br />
necessary to introduce a &#8220;Y&#8221;, if you want to reformat the drive or<br />
enter &#8220;N&#8221;, if not required;<br />
&#8211; After loading the mini systems on the hard drive would you-<br />
given a message to her perevyzova from this disc;<br />
after a while you will be prompted &#8220;@&#8221;;<br />
&#8211; In response to this invitation must type &#8220;B&#8221;, and<br />
then, in response to an invitation, &#8220;$&#8221; (dollar) to introduce &#8220;DW0&#8221; (or<br />
&#8220;DW&#8221; and press (VC));<br />
&#8211; After a while the screen will receive invitations<br />
of &#8220;BOOT :&#8230;&#8221;; in response to it, you must press<br />
(VC);<br />
&#8211; After the system is triggered, it will ask for a floppy disk from the N1<br />
basic set, it must be inserted into any drive<br />
on floppy disks, enter the number of drive and press<br />
key (VC);<br />
&#8211; After reading the floppy disk system will ask the following;<br />
necessary to remove the floppy disk with the number 1 from the drive<br />
and insert a floppy disk with the number 2, then number 3 and<br />
so on;<br />
&#8211; After the floppy will be read by all base<br />
set, the system will automatically reboot and check the File<br />
lovuyu system on your hard drive (this can happen<br />
Re-Boot);<br />
&#8211; After rebooting the system will prompt &#8220;Name:&#8221;;<br />
enter the name of the root user to perform<br />
administrative functions in the DEMOS.</p>
<p>If you are logged on for the first time after the initially-<br />
initial installation or complete restoration, it is necessary-<br />
necessary to do the following:<br />
&#8211; Set a password for the root user command<br />
passwd;<br />
&#8211; Duplicate the distribution set GMD.</p>
<p>To copy a floppy disk you can use cpfd<br />
(See 4.6.2).<br />
Before turning off the PC user must perform<br />
command:<br />
/ Etc / reboot-h (sure!)</p>
<p>Diskette distribution set should be pasted<br />
markers of protection record. This is to ensure that due<br />
equipment malfunction or careless use is not<br />
destroy information on floppy disks.<br />
During the boot from the floppy disk with the number 0, it<br />
should be without a marker.</p>
<p>1.2. Download and check the integrity of the system<br />
=======================================<br />
To load the operating system must DEMOS:<br />
&#8211; Turn the power on the PC;<br />
&#8211; Received an invitation to &#8220;@&#8221;, press (b), and then<br />
in response to an invitation, &#8220;$&#8221; (dollar) to introduce &#8220;DW0&#8221; (or &#8220;DW&#8221; and<br />
press (VC));<br />
&#8211; After a while the screen will receive invitations<br />
of &#8220;BOOT :&#8230;&#8221;; in response to it, you must press<br />
(VC);<br />
&#8211; On request &#8220;Enter the time &#8230;&#8221; necessary to introduce 10<br />
digits and press (VC);<br />
&#8211; Further to the request &#8220;Check for file system?&#8221; need-<br />
Dimo press (VC) (if you want to check file<br />
system), or enter &#8220;N&#8221; and press (VC) (if not the friction<br />
buetsya check file system);<br />
&#8211; After checking the file systems will receive invitations<br />
of &#8220;Name:&#8221;, enter the name under which the user<br />
registered in the system after its processing realized<br />
login.</p>
<p>Example Remark and e. When checking file systems<br />
may happen to re-reboot.</p>
<p>If the answer to the query &#8220;Name:&#8221; enter &#8220;user&#8221;, a Loss-<br />
zoydet login PRACTICE (system description PRACTICE<br />
See Section 3 &#8220;Guidebook&#8221;).</p>
<p>After completion of the work in the system, on invitation of the<br />
solution to enter commands to type &#8220;/ etc / reboot-h&#8221;; after<br />
how the system responds &#8220;SYNCING DISKS &#8230; DONE&#8221;, can be switched off-<br />
chit powered PC.</p>
<p>2. ADVANCED FEATURES DEMOS OS Version 3.0<br />
===========================================<br />
1.<br />
Generating core demos contains the following items change<br />
towards increased efficiency and optimality of the kernel:</p>
<p>a). A new, fastest, and very bright<br />
in the hard disk drive such as &#8220;Winchester&#8221;, re-<br />
presses of the program is configured rwset.</p>
<p>b). Adjusted and optimized driver floppy<br />
disc.</p>
<p>c). A new superuniversalny printer driver<br />
supporting the work of printers such as:<br />
EPSON FX-800, EPSON LX-800, SM 6302, DZM-180, SM 6315,<br />
SM 6900, ROBOTRON SM 6329, D100, D100M, etc.<br />
full ob_eme their functionality<br />
and taking into account the errors in the ROM EPSON FX-800. Modes of Operation<br />
driver software is configured lpset.<br />
For details, see READ_LP file in the root directory.</p>
<p>d). This version of the kernel supports the controller KTSGD<br />
as with ROM KR18101RE2-181 on the board KTSGD and with ROM<br />
KR18101RE2-182, operating in 8-bit character mode.<br />
(Note that the kernel version 2.0 is not capable of work-<br />
a thief with KTSGD on ROM KR18101RE2-182). However, the supplied<br />
graphic protocol / etc / graf, is loaded into RAM KTSGD<br />
and designed for ROM KR18101RE2-181 will not be over-<br />
gruzhatsya in ROM KR18101RE2-182. Currently,<br />
developed a new graphics protocol<br />
latest ROM.</p>
<p>In order to save memory parameters changed<br />
The kernel configuration:</p>
<p>e). Number of I / O buffer.</p>
<p>f). Number of processes in the system.</p>
<p>g). Number of concurrently executable programs.</p>
<p>h). Number of file descriptors.</p>
<p>i). Number of simultaneously open files.</p>
<p>j). &#8220;Trapped&#8221; statistics on I / O buffer, the sub-<br />
pumping at boot time, for the teams.</p>
<p>k). Reduced the number of overlay core demos.</p>
<p>l). And other stuff &#8230;</p>
<p>2.<br />
Fix bug in the loader boot, which allowed<br />
work on different types of hard drives.</p>
<p>3.<br />
Fix bug in intermediate loaders<br />
rwuboot, fduboot.</p>
<p>4.<br />
The new version 4.1 of multiscreen editor red<br />
contains the following changes and additions:</p>
<p>a). (PF1) (i) (VC) set / reset insert mode.</p>
<p>b). (PF1) (b) (VC) set the 132 characters on the screen.</p>
<p>c). (PF1) (l) (VC) set the 80 characters on the screen.</p>
<p>d). (PF1) (g) (VC) set the drawing symbols<br />
pseudographics. Press the (F4) (F5), (F6) (F8)<br />
You can &#8220;draw&#8221; and &#8220;erase&#8221; vertical and horizontal<br />
tal solid lines.</p>
<p>e). (PF1) (^ 0) set / reset mode drawing / erasing pseudographics.</p>
<p>f). (PF1) (n) (VC) Exit from the pseudo-graphic.</p>
<p>g). (F1) move the cursor on the word forward.</p>
<p>h). (PF4) move the cursor to end of line.</p>
<p>i). (F5) delete word to the right of the cursor.</p>
<p>j). (PF1) (2) (right arrow) move the cursor<br />
in the right extreme position of the current window.</p>
<p>k). (PF1) (2) (left arrow) move the cursor<br />
in the leftmost position of the current window.</p>
<p>l). (PF1) (2) (up arrow) move the cursor<br />
the upper extreme position of the current window.</p>
<p>m). (PF1) (2) (Down Arrow) move the cursor<br />
the lower extreme position of the current window.</p>
<p>n). (PF1) (octal) (2) (^ 0) input specials. characters<br />
where the number has three digits.</p>
<p>o). Optimized output to the screen with<br />
use shortcuts (F7) (PF1) (F7), (2) (F7) (PF1) (2) (F7)</p>
<p>p). Undo the (FI), as the tab back</p>
<p>5.<br />
Corrected program graf (file etc / graf).<br />
Graphics protocol can now be downloaded as<br />
in compatibility mode (VT52), and in the extended<br />
pulsed mode (VT100) displeya.V file etc / termcap include<br />
Chen esc-sequence installation of roll band from 2<br />
at 22 lines screen, which improves the visibility of pa-<br />
Editor&#8217;s red boots, and other minor changes.</p>
<p>6.<br />
Make a convenient initial installation of OS DEMOS on your hard drive<br />
(See above point 1), taking into account their different types and database RUBIN.</p>
<p>7.<br />
Minor changes to the index.html file etc / rc<br />
(Associated with the programs of fsck, mount).</p>
<p>8.<br />
Graphics library libgraph.a is<br />
directory usr / lib and a functional analogue of graphite<br />
cally Library Company &#8220;Borland International&#8221;. The file<br />
READ_GRAF describes the graphics functions.</p>
<p>* * * * *</p>
<p>9.<br />
Opint program determines the optimal interleaving of sec-<br />
tori, surfaces, cylinders and formats vinchester.Kontrol-<br />
Noe testing after formatting the hard drive with an optimal<br />
interleaving shows that the efficiency of working with hard drive<br />
increased on average by 25-30%. opint program should be run<br />
from floppy disks (the OS is loaded at the same time as floppy disks of numbers under-<br />
rum 0). opint program has the following items keys:</p>
<p>Usage: opint {-i [N] |-f [-q] [-bN] [-lN] [-sN] [-cN]} [-r]</p>
<p>-I [N] to calculate the optimal interleaving factor of<br />
Sector / surfaces / and the cylinders. N-number<br />
working cylinder, the cylinder is also used N-1<br />
(Default N == 152)</p>
<p>-F format the hard drive</p>
<p>-R does not store information on your hard drive (in the informal<br />
matted hard drive, this key is mandatory!)</p>
<p>-Q no questions asked</p>
<p>-BN set the start formatting with the N-cylinder<br />
inclusive (the default cylinder N == 0);<br />
this cylinder (and previous) is used in<br />
as working to find the optimal Interlachen<br />
Ving by a key-b0, or any absence<br />
exists at all, then the worker becomes a 152 cylinder.</p>
<p>-LN set end of formatting to N-cylinder<br />
inclusive (default to the cylinder N == 152)</p>
<p>-SN set interleaving factor N by sektoram/po-<br />
surfaces, (default N == best)</p>
<p>-CN set interleaving factor N in the cylinders<br />
(Default N == best)</p>
<p>10.<br />
Rwset program is used to adjust operating modes<br />
hard disk drive and has the keys:</p>
<p>Usage: rwset [-cN] [[-] w]<br />
-CN &#8211; enable precompensation to the N-cylinder<br />
w &#8211; include checking account<br />
-W &#8211; disable checking account</p>
<p>11.<br />
Lpset program is used to adjust operating modes<br />
printer driver. All inforamatsiya Printing<br />
contained in a file READ_LP.</p>
<p>* * * * * * *</p>
<p>3. OPERATING SYSTEM DEMOS/306<br />
==============================</p>
<p>DEMOS/306 operating system designed for installation and<br />
operation on a single hard disk drive (&#8220;HDD&#8221;, 20MB) with<br />
operating system RT-11. Hard disk capacity of 20MB<br />
between the two operating systems is as follows:</p>
<p>RT-11: from 0 to 305 cylinder (10Mb)<br />
DEMOS: from 306 to 611 cylinders (10Mb)</p>
<p>Initially (power-on) are loaded OS RT-11,<br />
and hard disk drive must be configured to work with<br />
10 MB free disk space (the cylinder to 305 inclusive).<br />
After downloading the RT-11 operating system called DEMOS/306 team DEMOS.</p>
<p>Initial OS installation DEMOS/306 from installing OS DEMOS different<br />
only a single boot floppy N0; the other five disks<br />
distribution N1-N5 are identical for both operating systems.</p>
<p>User tired of two-wheeled scooter RT-11<br />
pressing five keys is transplanted into a strategic<br />
Bomber DEMOS/306!</p>
<p>OS DEMOS/306 &#8211; THIS IS A BREAKTHROUGH IN THE FUTURE!<br />
OS DEMOS/306 &#8211; just fantastic!</p>
<p>POSTCRYPTUM 1.<br />
&#8212;&#8212;&#8212;&#8212;&#8211; The directory / TEST contains kontolno-demonstration<br />
tional tasks and tests that are run co-<br />
executing / TEST / main.</p>
<p>POSTCRYPTUM 2.<br />
&#8212;&#8212;&#8212;&#8212;&#8211; In the supplied distribution into a directory bin /,<br />
usr / bin /, etc / contains utilities and files<br />
(In particular:</p>
<p>c7t10 nroff autoconfig termcap<br />
chgrp pp clri timstat<br />
chown pstat cron ttys<br />
dump restor dostat utpm<br />
dumpdir rline getty wall<br />
edit rmail graf<br />
egrep setcolor group<br />
false smbl group.std<br />
fgrep startcode init<br />
gets starttext iostat<br />
login su lp_daemon<br />
lpf tfd0 mknod<br />
lpset wermit psdatabase<br />
lx accton savecore<br />
mix admclean shutdown</p>
<p>and others &#8230;), which are not descriptions of documents<br />
orientation, because description on the tools and files that need-<br />
dimye system administrator or system programming<br />
Misty and not directly related to the work of Paul<br />
transducer outside the scope of this documentation, I have-<br />
ing goal is to give the most relevant information for the user-<br />
converter. Descriptions can be found in various literature<br />
on UNIX operating systems as Most utilities and service<br />
Files are generally accepted in the family of UNIX names.<br />
On the other hand, not all utilities (in particular:</p>
<p>ardos from mkmf splineg<br />
banner hier mm strings<br />
blank hostname prmail sum<br />
checkobj ident rab unifdef<br />
ckdir indent rcs units<br />
colcrt install rcsdiff uptime<br />
ctags last rcsintro uucpc<br />
cxref lastcomm rcsmerge uuxc<br />
ddutok lex rev whoami<br />
error lint rlog badsect<br />
expand look script ncheck<br />
fold merge spell</p>
<p>and others &#8230; ) Described in the documentation contained<br />
in the distribution, because documents constitutes a<br />
taking into account further developments.</p>
<p>POSTCRYPTUM 3.<br />
&#8212;&#8212;&#8212;&#8212;&#8211; The distribution is not included and are available<br />
otdelno:</p>
<p>a). DBMS &#8220;RUBIN&#8221;. / With complete documentation /</p>
<p>b). Integrated envelope &#8220;Demos Commander&#8221; &#8211;<br />
analogue of the &#8220;Norton Commander&#8221;.</p>
<p>POSTCRYPTUM 4.<br />
&#8212;&#8212;&#8212;&#8212;&#8211; On a version 3.0 OS DEMOS worked:</p>
<p>Yudin, KE<br />
Sudakov AV<br />
Ryzhonkov KS<br />
Bragin, DN</p>
<p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~<br />
Copyright 1991 by Research Institute &#8220;Scientific Centre&#8221;,<br />
lab 462 / 2. All rights reserved.</p>
<p>PHONE: 536-56-42.</p>
<p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~<br />
Moscow, Zelenograd, Research Science Center (lab.462 / 2)</p>
<p>Phone: 536-56-42.</p>
<p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://virtuallyfun.com/2011/05/01/demos-on-the-pdp-11-in-simh/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
