Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
ftp.its.os.org
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Krzysztof Drewniak  
View profile  
 More options Jun 6 2010, 5:02 pm
Newsgroups: alt.sys.pdp10
From: Krzysztof Drewniak <krzysdrewniakNOS...@gmail.com>
Date: Sun, 6 Jun 2010 21:02:14 +0000 (UTC)
Local: Sun, Jun 6 2010 5:02 pm
Subject: ftp.its.os.org
Where can I find the files hosted on ftp.its.or.org? (The site's down)

KRzysztof

--
X-Real-Email-With-Antispam: krzysdrewniak at gmail dot com
pgp key on keyserver.ubuntu.com and maybe some other place too


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Krzysztof Drewniak  
View profile  
 More options Jun 7 2010, 5:56 pm
Newsgroups: alt.sys.pdp10
From: Krzysztof Drewniak <krzysdrewniakNOS...@gmail.com>
Date: Mon, 7 Jun 2010 21:56:36 +0000 (UTC)
Local: Mon, Jun 7 2010 5:56 pm
Subject: Re: ftp.its.os.org
On 2010-06-06, Krzysztof Drewniak <krzysdrewniakNOS...@gmail.com> wrote:
> Where can I find the files hosted on ftp.its.or.org? (The site's down)

> KRzysztof

I actually meant ftp.its.os.org . Specifically
ftp://ftp.its.os.org/its/klh10/pi-its-a11110.tar  
Anyone have a copy of that?

Krzysztof

--
X-Real-Email-With-Antispam: krzysdrewniak at gmail dot com
pgp key on keyserver.ubuntu.com and maybe some other place too


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Krzysztof Drewniak  
View profile  
 More options Jun 8 2010, 8:40 am
Newsgroups: alt.sys.pdp10
From: Krzysztof Drewniak <krzysdrewniakNOS...@gmail.com>
Date: Tue, 8 Jun 2010 12:40:54 +0000 (UTC)
Local: Tues, Jun 8 2010 8:40 am
Subject: Re: ftp.its.os.org
On 2010-06-07, Krzysztof Drewniak <krzysdrewniakNOS...@gmail.com> wrote:
> On 2010-06-06, Krzysztof Drewniak <krzysdrewniakNOS...@gmail.com> wrote:
>> Where can I find the files hosted on ftp.its.or.org? (The site's down)

>> KRzysztof

> I actually meant ftp.its.os.org . Specifically
> ftp://ftp.its.os.org/its/klh10/pi-its-a11110.tar  
> Anyone have a copy of that?

> Krzysztof

I found the file I was looking for, but KLH-10 is acting strange (I
type go and nothing happens).

--
X-Real-Email-With-Antispam: krzysdrewniak at gmail dot com
pgp key on keyserver.ubuntu.com and maybe some other place too


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Roch Kusiak  
View profile  
 More options Jun 9 2010, 7:50 am
Newsgroups: alt.sys.pdp10
From: Roch Kusiak <roch.kus...@gmail.com>
Date: Wed, 9 Jun 2010 04:50:24 -0700 (PDT)
Local: Wed, Jun 9 2010 7:50 am
Subject: Re: ftp.its.os.org

> I found the file I was looking for, but KLH-10 is acting strange (I
> type go and nothing happens).

Actually, it is doing something - spinning "on the spot" executing
a jump instruction with target address of that jump instruction
repeatedly. You can see it by enabling trace (TRACE ON? Can't
remember right now) before typing GO.

See, KLH10's KS emulation has an unsafe optimization in the macro
that adjusts the program counter, which leads to the PC not changing
to the specified jump target after JSR, and possibly other
instructions, when compiled with GCC4. I ran into the problem a year
ago.
http://groups.google.com/group/alt.sys.pdp10/browse_thread/thread/3cc...

Look into kn10def.h, find

#if KLH10_EXTADR
# define PC_ADDXCT(x) { register pcinc_t i__ = (x); if (i__) PC_ADD
(i__); }
#else
# define PC_ADDXCT(x) (cpu.mr_PC += (x))       /* For now; fix up
later? */
#endif

and change the "fix up later" line into

# define PC_ADDXCT(x) { register pcinc_t i__ = (x); cpu.mr_PC +=
i__; }

then recompile KLH10.

Pozdrawiam,
Roch Kusiak


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »