Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread Mike Eppler
Line 25 is different in both programs, first is minus 65536 and second is minus 65535, this would make a big difference, wouldn't it? Mike KL7ILA On 4/21/2015 4:17 AM, Stephen Adolph wrote: Really, ok. Well, that still seems like a different ROM image. thanks, Steve On Tue, Apr 21, 2015 at

Re: [M100] OT Geopoitiks BBS Door

2015-04-21 Thread Russell Flowers
04/21/2015 01:30 PM . 04/21/2015 01:30 PM .. 05/29/1988 06:52 PM33,072 GEOCREAT.COM 06/12/1989 12:35 AM 3,021 GEOP.DOC 03/19/1989 09:19 AM 127,040 GEOP.EXE 02/01/1989 04:57 AM 7,339 HELPB 01/01/1980 01:31 AM

Re: [M100] OT Geopoitiks BBS Door

2015-04-21 Thread Jeff Gonzales
It might be the connection I'm using. I'll try again when I go home. When you downloaded it what was inside the ZIP? On Tue, Apr 21, 2015 at 11:57 AM, Russell Flowers wrote: > Hmm, I was able to download the first one using my browser. > > On Tue, Apr 21, 2015 at 1:53 PM, Jeff Gonzales > wrot

Re: [M100] OT Geopoitiks BBS Door

2015-04-21 Thread Russell Flowers
Hmm, I was able to download the first one using my browser. On Tue, Apr 21, 2015 at 1:53 PM, Jeff Gonzales wrote: > Hi Russell, > > Yeah, that first link was the only one I managed to find. They don't > allow anonymous FTP anymore. I'll check out the second one. I do remember > it being in Pa

Re: [M100] OT Geopoitiks BBS Door

2015-04-21 Thread Jeff Gonzales
Hi Russell, Yeah, that first link was the only one I managed to find. They don't allow anonymous FTP anymore. I'll check out the second one. I do remember it being in Pascal. Thanks, Jeff On Tue, Apr 21, 2015 at 11:37 AM, Russell Flowers wrote: > Here is a modified version (look for "GEOPO

Re: [M100] OT Geopoitiks BBS Door

2015-04-21 Thread Russell Flowers
Here is a modified version (look for "GEOPOLITIK door Game. Enhanced by Scott Baker") but I don't see any source code. http://archives.thebbs.org/ra93a.htm Then here is the website of Dr. Scott Baker, the source might actually be in here ( *“When Super Powers Collide”. This was going to be my ow

[M100] OT Geopoitiks BBS Door

2015-04-21 Thread Jeff Gonzales
Hi everyone, Does anyone remember an old BBS Door called "Geopolitiks" ? It was a multi-player global war game I used to play on various BBSes back in the 80s and 90s. I managed to find the source code for it a few years back but my hard drive was stolen. I figured maybe someone on the list wou

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread MikeS
LOL! As a matter of fact I bought my first M100 brand new back in '83 as a more or less dedicated terminal, but connected to a Cromemco S100 system and a network of Rockwell AIM-65s instead of a DEC box. m - Original Message - From: "John Gardner" To: "Model 100 Discussion" Se

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread John Gardner
...with octal thrown in just for fun... Extra Credit if one of your Tandys is a dedicated PDP-8 terminal, eh Mike?:)

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread MikeS
You don't really want to get into a discussion about decimal vs. binary vs. hexadecimal vs. ASCII (with octal thrown in just for fun), do you? - Original Message - From: James Zeun To: Model 100 Discussion Sent: Tuesday, April 21, 2015 11:23 AM Subject: Re: [M100] quick test

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread MikeS
Thanks; looks like someone reads my posts after all ;-) Of course a single 0 would work, but over the years I've gotten into the habit of adding as many zeroes or spaces as the desired fixed length so that a blank won't crash. There's a similar issue converting numbers to fixed length strings;

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread James Zeun
I honestly wish i understood what he just said :-P On 21 Apr 2015 4:09 pm, "Stephen Adolph" wrote: > ah. of course. very nice, a simple pre and post processor.. > > On Tue, Apr 21, 2015 at 10:56 AM, MikeS wrote: > >> To add a leading zero if a<16 >> >> HEX$(15)="F" >> >> - Original Messag

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread Stephen Adolph
ah. of course. very nice, a simple pre and post processor.. On Tue, Apr 21, 2015 at 10:56 AM, MikeS wrote: > To add a leading zero if a<16 > > HEX$(15)="F" > > - Original Message - > *From:* Stephen Adolph > *To:* Model 100 Discussion > *Sent:* Tuesday, April 21, 2015 10:46 AM > *Su

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread MikeS
To add a leading zero if a<16 HEX$(15)="F" - Original Message - From: Stephen Adolph To: Model 100 Discussion Sent: Tuesday, April 21, 2015 10:46 AM Subject: Re: [M100] quick test of M100 EU ROM checksum A8AF with REX Nice! Mike, why B$=RIGHT$("00"+HEX$(A),2) i

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread Stephen Adolph
Nice! Mike, why *B$=RIGHT$("00"+HEX$(A),2)* instead of *B$=HEX$(A)* On Tue, Apr 21, 2015 at 10:39 AM, MikeS wrote: > As usual when this topic comes up I'll present the decimal version: > > Connect the two computers and set the receiving terminal program to > capture text to a file, e.g. RO

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread MikeS
As usual when this topic comes up I'll present the decimal version: Connect the two computers and set the receiving terminal program to capture text to a file, e.g. ROM100.txt On the M100, run: 10OPEN"COM:98N1E"FOR OUTPUT AS 1:FOR I=0 TO 32767:PRINT#1,PEEK(I):NEXT Watch a little TV, have a sna

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread Stephen Adolph
yes, when you can. Then I can test it in VirtualT. On Tue, Apr 21, 2015 at 9:47 AM, James Zeun wrote: > So still want me to back it up? > On 21 Apr 2015 1:17 pm, "Stephen Adolph" wrote: > >> Really, ok. Well, that still seems like a different ROM image. >> thanks, >> Steve >> >> On Tue, Apr

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread James Zeun
So still want me to back it up? On 21 Apr 2015 1:17 pm, "Stephen Adolph" wrote: > Really, ok. Well, that still seems like a different ROM image. > thanks, > Steve > > On Tue, Apr 21, 2015 at 7:37 AM, James Zeun wrote: > >> Results just in 61092 >> On 21 Apr 2015 11:58 am, "James Zeun" wrote:

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread Stephen Adolph
Really, ok. Well, that still seems like a different ROM image. thanks, Steve On Tue, Apr 21, 2015 at 7:37 AM, James Zeun wrote: > Results just in 61092 > On 21 Apr 2015 11:58 am, "James Zeun" wrote: > >> Will get on it later with a coffee >> On 21 Apr 2015 11:26 am, "Stephen Adolph" wrote: >>

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread James Zeun
Results just in 61092 On 21 Apr 2015 11:58 am, "James Zeun" wrote: > Will get on it later with a coffee > On 21 Apr 2015 11:26 am, "Stephen Adolph" wrote: > >> James, my mistake-- this code needs a bug fixed. >> >> 5 A=0 >> 10 FORI=0 TO 32767 >> 20 A=A+PEEK(I) >> 25 IF A>65535 THEN A=A-65536 >>

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread James Zeun
Will get on it later with a coffee On 21 Apr 2015 11:26 am, "Stephen Adolph" wrote: > James, my mistake-- this code needs a bug fixed. > > 5 A=0 > 10 FORI=0 TO 32767 > 20 A=A+PEEK(I) > 25 IF A>65535 THEN A=A-65536 > 30 NEXTI > 50 PRINT A > > can you run this when you can? > > > On Mon, Apr 20, 20

Re: [M100] quick test of M100 EU ROM checksum A8AF with REX

2015-04-21 Thread Stephen Adolph
James, my mistake-- this code needs a bug fixed. 5 A=0 10 FORI=0 TO 32767 20 A=A+PEEK(I) 25 IF A>65535 THEN A=A-65536 30 NEXTI 50 PRINT A can you run this when you can? On Mon, Apr 20, 2015 at 8:07 PM, Stephen Adolph wrote: > ...seems to work just fine. > > So, James - so far no smoking gun.