Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion PDP-10 system calls, was 1132 printer history

Received: by 10.58.220.97 with SMTP id pv1mr508117vec.13.1347644648316;
        Fri, 14 Sep 2012 10:44:08 -0700 (PDT)
MIME-Version: 1.0
Path: ed8ni64862666wib.0!nntp.google.com!feeder3.cambriumusenet.nl!feed.tweaknews.nl!85.12.40.139.MISMATCH!xlned.com!feeder7.xlned.com!newsfeed10.multikabel.net!multikabel.net!newsfeed20.multikabel.net!border3.nntp.ams.giganews.com!border1.nntp.ams.giganews.com!nntp.giganews.com!news.panservice.it!aioe.org!.POSTED!not-for-mail
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Newsgroups: comp.lang.pl1,alt.folklore.computers
Subject: Re: PDP-10 system calls, was 1132 printer history
Date: Sat, 8 Sep 2012 20:08:24 +0000 (UTC)
Organization: Aioe.org NNTP Server
Lines: 33
Message-ID: <k2g8jo$q6f$1@speranza.aioe.org>
References: <ichas81ay0.fsf@home.home>   <k1geis$8og$1@speranza.aioe.org> <ea6aadba-3317-4968-bfdc-4ba32c7eed96@v22g2000vbu.googlegroups.com> <k1h6rk$v2i$1@speranza.aioe.org> <mddvcfsp5y4.fsf@panix5.panix.com> <k29fbt$1d0$1@speranza.aioe.org> <50489b51$40$fuzhry+tra$mr2ice@news.patriot.net> <k2bec4$d55$1@dont-email.me> <50494a0a$7$fuzhry+tra$mr2ice@news.patriot.net> <k2fchi$q6l$1@dont-email.me> <PM0004C9318592CFD0@aca2748b.ipt.aol.com> <8615238a-5405-4c09-973e-f43a9d4a3b93@rg9g2000pbc.googlegroups.com>
NNTP-Posting-Host: 0usSS01PZ8AI54GFz6in7A.user.speranza.aioe.org
X-Complaints-To: abuse@aioe.org
User-Agent: tin/1.9.6-20100522 ("Lochruan") (UNIX) (Linux/2.6.32-5-amd64 (x86_64))
X-Notice: Filtered by postfilter v. 0.8.2
Bytes: 2695

In comp.lang.pl1 Quadibloc <jsav...@ecn.ab.ca> wrote:

(snip)
> That was one of the few parts of the front panel that was for the use
> of machine operators instead of IBM service personnel. You turned the
> three knobs to choose the boot device, and then you pressed the IPL
> (Initial Program Load) to start the computer - you might boot it from
> cards, or tape, or disk. It didn't try scanning through them in an
> order set from the console screen, the way a modern PC does, but it
> did have a boot program of sorts in ROM, so that never had to be
> toggled in from the front panel.

Hmm. IPL doesn't do all that much compared to the boot ROM on
many machines now.

The first thing it needs to do is a 24 byte read from the IPL device.
I believe that this can be done by first writing an 8 byte CCW
to address zero, but usually is done without actually writing it.

If you do write the 8 byte CCW, with command chaining, then it
naturally goes on to execute the CCW at address 8, and usually
command chaining to address 16.

Then the only thing it needs to do it load the PSW from address zero.

Some PDP-11s have pretty simple boot hardware. One that I know,
if I remember it right, has a register (in I/O space) that normally
has an instruction that branches to itself. At the same time, the
disk controller itself reads the data into memory, and, when done,
instead returns a branch to the data it read. Just about a two byte ROM.

-- glen