Jump to content

ClausB

Members
  • Content Count

    2,090
  • Joined

  • Last visited

Posts posted by ClausB


  1. 3 hours ago, skr said:

    Thanks for sharing your program, that´s the stuff I´m looking for. :)

     

    I based the calculations on polynomials from a paper, supposedly good to one minute of arc. I don't know how well they extrapolate to today, so I compared them with CalSky.com for today at 0h UTC:

    Body	err RA	err Dec
    -----	-----	-----
    Sun	0.7 m	1'
    Mercury	0.3 m	1'
    Venus	0.3 m	1'
    Moon	8.6 m	35'
    Mars	0.5 m	2'
    Jupiter	0.0 m	0'
    Saturn	0.0 m	0'
    Uranus	0.0 m	0'
    Neptune	0.1 m	1'
    Pluto	0.8 m	2'

    Well, the moon is off a lot (1 m of RA is 15' of arc, or a quarter degree, or half the moon's diameter). The sun and Pluto are off a bit, but the rest are not too bad, for 37-year old polynomials!

     

    • Like 3

  2. No, there's only one signal there that's not on some other slot. It's called EXSEL (different from the /EXSEL signal on slots 0 and 3). It disables the motherboard's main address decoder which, in turn, disables all RAM, ROM, and I/O registers (except ANTIC). 

     

    I presume it's there so the tester can insert its own RAM and ROM into the address space. Interesting that the 400's test connector doesn't have that signal.

    • Like 1

  3. On 7/6/2020 at 11:37 AM, StickJock said:

    Wang 2200T.  

    No microprocessor, 4K of RAM, a 64x16 display and we liked it just fine!

     

    https://www.wang2200.org/

    https://en.wikipedia.org/wiki/Wang_2200

     

    The 2-bay floppy drive is on the right.

    What is a recently obsolete computer storage device that would be significantly difficult to ...

     

    Been reading up on this machine. Pretty nice for its time. Custom 4-bit CPU runs at 0.6 Mips. Up to 32KB RAM can be read 8 bits wide but written only 4 bits at a time. 42KB program ROM is 20 bits wide and implements full BASIC and I/O. Keyword atoms (tokens) save RAM space. Variables are 8-byte BCD floating point with 13 digits precision, typical for a calculator company back then.

     

    I would guess it's roughly comparable in performance to a TRS-80 Model 1 Level II. (Fun fact: the Z80 has only a 4-bit ALU inside.)


  4. 18 hours ago, bob1200xl said:

     

    I'm up in Placerville. Not so far.

     

    Bob

    I've been there! Made a customer visit to Shingle Springs. Flew into Reno, visited a friend there, drove around Lake Tahoe, took a hotel in Placerville. Stopped at a park where you could pan for gold but didn't have time for that so I just bought some gold flakes for the kids. Beautiful country there!


  5. Bitmap graphics modes show bits as pixels. GR. 4 and 6 two-color modes use one bit per pixel, so it's fun to use them as windows into the Atari's memory.

     

    Type:

    GR.6

    B=PEEK(560)+256*PEEK(561)+4

    POKE B,0:POKE B+1,0

     

    Now you see the first 1.5K of RAM. See the timers in page 0 ticking away. See the stack in page 1 flickering. See system variables change as you type something. Plug in a joystick and watch bits change when you move it.

     

    Type:

    POKE B+1,208

     

    Now you see the Atari's special hardware registers. GTIA, POKEY, PIA, ANTIC. See POKEY timers and random number generator. Type keys and watch bits change. Move the stick and see PIA change. Watch the fire button bit in GTIA and the light pen register in ANTIC.

     

    Run this program and watch all the memory scroll by. Line 30 skips blank RAM. Change it if you like. Lines 60-85 print the page number in hex. If you prefer decimal just print A or H. Change line 1 to GR.4:S=10 if you want bigger bits. Have fun.

     

    IMG_20200625_081533.jpg

    • Like 14
    • Thanks 2

  6. The bytes from addresses 06 through BB look like a LUT (look-up table) of some function which increases less as it grows, like a square root. I typed a cross-section of the table into a spreadsheet, squared the values, scaled down by 256, and took consecutive differences. It does indeed look like a square root approximation table!

     

    sqrt.PNG

    • Like 3

  7. On 5/26/2020 at 2:21 AM, Ed in SoDak said:

    I have pretty-near all of 'em. More than one TS1000 (my first) bit the dust, though I kept the carcasses. 

    1000IBM.jpg

    Looks like a TI keyboard there. I noticed the TI keyboard's matrix is very similar to the TS1000/ZX81's, making the substitution fairly easy. Was that a common mod in the day? Where's your TS1000 board, under the wood? Any more photos of that setup?


  8. On 5/19/2020 at 12:59 PM, Keatah said:

    ... smaller single-purpose utilities ...

     

    Anything by Robert Miller? He's a friend of mine and long ago he gave me some utilities he wrote, like sunrise/set calculator and world map projections. I don't know how widely distributed they were.

×
×
  • Create New...