Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Fascinating is a word I use for the unexpected. -- Spock, "The Squire of Gothos", stardate 2124.5


computers / comp.sys.transputer / Re: Hacking CSA Mandelzoom to work on a B008

SubjectAuthor
* Hacking CSA Mandelzoom to work on a B008Tom Stepleton
`- Re: Hacking CSA Mandelzoom to work on a B008Tom Stepleton

1
Hacking CSA Mandelzoom to work on a B008

<d7189237-e335-44c2-b763-e77cee63fdaan@googlegroups.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=97&group=comp.sys.transputer#97

  copy link   Newsgroups: comp.sys.transputer
X-Received: by 2002:a05:6214:1bcd:b0:4af:646a:9793 with SMTP id m13-20020a0562141bcd00b004af646a9793mr519172qvc.94.1664409116042;
Wed, 28 Sep 2022 16:51:56 -0700 (PDT)
X-Received: by 2002:a37:395:0:b0:6cd:cca6:4b8a with SMTP id
143-20020a370395000000b006cdcca64b8amr388714qkd.573.1664409115648; Wed, 28
Sep 2022 16:51:55 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.sys.transputer
Date: Wed, 28 Sep 2022 16:51:55 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=82.31.125.46; posting-account=l3olFwkAAAB7_YlbF47jpoRgdTkZ-iGF
NNTP-Posting-Host: 82.31.125.46
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <d7189237-e335-44c2-b763-e77cee63fdaan@googlegroups.com>
Subject: Hacking CSA Mandelzoom to work on a B008
From: steple...@gmail.com (Tom Stepleton)
Injection-Date: Wed, 28 Sep 2022 23:51:56 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2908
 by: Tom Stepleton - Wed, 28 Sep 2022 23:51 UTC

There, that's more like it:
https://photos.app.goo.gl/d4HmNMHEwW8Jry6x8

As noted in the previous thread and elsewhere, the CSA Mandelbrot program won't work on a B008 as it's natively configured. The program freezes when it attempts to execute some code on the T212 installed on the board.

I've been studying the worm program that distributes the software to the Transputers, and there's a pretty easy (if kludgy) alteration to the source code that sidesteps this problem. Just above this line: https://github.com/axelmuhr/T-Mandel/blob/master/FLBOOT.TAL#L179

add these instructions:

ldl LOOPA
adc -1
cj @R3

What it's doing is pretty unsophisticated. Note in this diagram: http://transputer.net/mg/b008ug/figure/096/fig01.png
that the T212 is reached from TRAM0 (natively the host TRAM) via Link 1. Since the software distributing worm starts from TRAM0, the T212 is discovered right away and joins the Transputer network assembled by the worm.

The Transputer network is never represented completely in one place --- instead, each node records its upstream node ("BOOTIN", the neighbour that "infected" the node with the worm) and up to three downstream nodes ("BOOTOUT[0..2]"). It identifies these nodes by the memory location of their channel control word (if that's confusing to any reader, you can replace it with "link ID" to get the idea).

What my hack does is prevent Link 1 from being the downstream connection to ANY node. It's quite crude, and it prevents the network from getting the most out of some topologies, but there is no ordinary topology you can set up on a B008 in its default hardware configuration that will fail to operate --- provided you stick to 32-bit Transputers.

I'll share my notes on the worm program before long.

--Tom

Re: Hacking CSA Mandelzoom to work on a B008

<1c9d7333-6705-417d-a82a-eef318c1e011n@googlegroups.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=98&group=comp.sys.transputer#98

  copy link   Newsgroups: comp.sys.transputer
X-Received: by 2002:a05:620a:17a8:b0:6ce:99f0:7626 with SMTP id ay40-20020a05620a17a800b006ce99f07626mr472826qkb.194.1664409254728;
Wed, 28 Sep 2022 16:54:14 -0700 (PDT)
X-Received: by 2002:a05:6214:5298:b0:4af:a79f:5bc0 with SMTP id
kj24-20020a056214529800b004afa79f5bc0mr462909qvb.129.1664409254509; Wed, 28
Sep 2022 16:54:14 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.sys.transputer
Date: Wed, 28 Sep 2022 16:54:14 -0700 (PDT)
In-Reply-To: <d7189237-e335-44c2-b763-e77cee63fdaan@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=82.31.125.46; posting-account=l3olFwkAAAB7_YlbF47jpoRgdTkZ-iGF
NNTP-Posting-Host: 82.31.125.46
References: <d7189237-e335-44c2-b763-e77cee63fdaan@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <1c9d7333-6705-417d-a82a-eef318c1e011n@googlegroups.com>
Subject: Re: Hacking CSA Mandelzoom to work on a B008
From: steple...@gmail.com (Tom Stepleton)
Injection-Date: Wed, 28 Sep 2022 23:54:14 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1503
 by: Tom Stepleton - Wed, 28 Sep 2022 23:54 UTC

On Thursday, September 29, 2022 at 12:51:56 AM UTC+1, Tom Stepleton wrote:
> What my hack does is prevent Link 1 from being the downstream connection to ANY node.

I forgot to clarify that it does this by refusing to record the channel control word for Link 1 (outbound) in BOOTOUT, regardless of whether a Transputer is reachable over that link.

--Tom

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor