Jump to content

JD6502

Members
  • Content Count

    71
  • Joined

  • Last visited

Posts posted by JD6502


  1. By coincidence I've been wondering about printer support in A8 emulators myself lately. It seemed odd that there was this big hole in the emulator world where a lot of popular (at the time) software whose primary output is to the printer is effectively useless on an emulator. I spent ( or wasted) a lot of time creating fonts with daisy dot, and thought it might be fun to see them re-created on a PC. I assumed that there weren't many other people who thought so, otherwise there would've been more done in that area. My thinking was... after all, a dot matrix page is just a bunch of black dots on a white background, how hard can that be? A driver to translate control codes for the more common printers, then put a bunch of dots on the screen with the right spacing, and an option to save it as a bmp or jpeg. But I'm not much of a programmer. My skills (such as they are) are limited to basic and I have no idea how to create a modern bit map file. It sounds like it might be more complicated than I thought, though.


  2. I have a rev 3 and a rev 4. Neither has jumpers. The rev 3 has one cap soldered directly to the SIO, the rev 4 has none. Can't remember if there are any on the PCB's. They both have a mess of diodes on the SIO. I've seen a number of pics of XE boards and one oddity I've noticed is that they invariably have MT DRAMS except for the upper left, which always seems to be some other brand. I assume there was a reason, but what?

     

    As it happens I finished repairing bad ram on the rev 4 just yesterday. The pattern on the memory test was bad even numbered cells for bank one and three, and all bad cells for bank two except 5 and 6. This is a pattern other people have reported as well. Testing all the chips in a working XL showed that only one chip was bad, but I replaced the eight main bank chips anyway and installed sockets. ( The second bank was replaced with a Newall 1meg ages ago). I lucked out on replacement chips, the local electronics parts store (creatively named "The Electronic Parts Store") is a quirky old place that's been around forever, and has an astonishing number of parts that have been on the shelf for the same period of time. They had exactly eight TI and OKI 4164's NOS.

    • Like 2

  3. Hmmm.... not sure how to vote here. Other 16\32 is closest, but misleading. I bought an XE in '86. Around '92 I bought a guy's 8 bit collection, which included an XE and XL. In '97 my sister gave me a Win 95 PC, but hardly touched it. In 2010 that I bought an HP Mini 'cause I'd heard vague information about something called the "interweb" (or something like that) and wanted to check it out. One of the first things i did was search for an SPO 256 chip to complete a DIY speech synthesizer for my Atari. ( An outfit in Britain had some-shipping cost more than the chip ). So while it's true that I spend more hours on the Mini, I'm not sure I can say that I ever actually have "moved on". I guess you need to add a "Never did" check box.


  4. I found a reprint of an article from the Assembly Language column in Antic June 1983 that explains how to do something similar, but if I read it correctly you need the basic cart and it makes a direct boot disk-not a binary. Here's an excerpt...

     

    The system works by loading the BASIC token file to a suitable address with a program used with the Assembler Editor cartridge, and inserting a short header program in front of the token file. This, upon loading, sets up the pointers required by BASIC and then jumps into the BASIC cartridge at the address of the RUN routine. A suitable return address is provided by pushing values onto the stack. A third program is then used to dump the header and token files onto cassette or non-DOS disk.

     

    It sounds cool, I may have to try this out.


  5. I've installed the UAV in my 130XE and I can see much improvement -especially for text. Last Word 80 column text is actually easily legible. I used Bryan's recommended XE install method and output is S-Video. BTW I also read the instructions as running the signals through the ferrite beads, not after. I am still getting the dreaded vertical interference pattern but not as badly as before. I should note that I have the old Newell 1Meg ram module installed and no shield. Fortunately my LCD has a noise reduction option which has all but eliminated the banding. I did have one minor problem with the install, the T-6 connection on the terminal block didn't work - I had to solder the color-in lead directly to the board. But all-in-all I'm pleased with the UAV, and I want to extend many thanks to Bryan for a very nice mod!


  6. "Aliants" !! I curse the very ground upon which the programers walk for this travesty they called a "game". (By which they meant torture) Developed by Starsoft it's really a set of mini games that came on a double sided disk and no provision for saving progress except between sides. So after waiting forever for the "you failed" screen to load you'd have to do the whole side over again if you screwed up. I think you had to go through the preface which told the story of ant-like aliens attacking the earth every time as well, though I may be wrong as I've made every attempt at forgeting this game as possible. Basically it was a giant waste of magnetic media.


  7. Compressed keyboards that map things like screen brightness and volume controls to the function keys should have an "fn" key somewhere. Mine is in the lower left between ctrl and "windows". It acts like a shift key, hold it down and press the f-key you want. My HP also maps the pause key to rt shift, which Altirra uses as the break key and caused me some head scratching before I figured it out.


  8. It had occurred to me that there might be a difference in the way the O.S.'s handle Caps. Not a high priority, given all the other stuff you're doing to improve Altirra. My PC is a little notebook and the compressed keyboard makes it easy to hit the caps lock instead of left shift. Now that I know how to recover I'm a happy camper.


  9. That's intentional. On the real Atari, CAPS is a shiftable key, not a toggle key. Caps Lock starts out on when the OS boots, pressing CAPS by itself turns off Caps Lock, and pressing Shift+CAPS turns it on. Altirra reinterprets the Caps Lock key on the PC to act the same way.

    I'm confused. On my real Atari (130 XE) the Caps key is a toggle. Default is upper case, hitting Caps switches the letter keys to lower case. Tapping it again switches back to upper. I don't really care one way or the other, I just didn't know how to turn upper case back on short of restarting Altirra.


  10. Has anyone else had a problem with the caps lock in Altirra 2.6? Whether it's on or off when I start Altirra, when I use the caps lock key subsequent keystrokes become lower case and the lock acts like a shift key. This happens with all keyboard options, and for as long as that instance of Altirra is active. Version 2.5 seems to do the same thing, but I haven't tried all options.


  11. I've been playing with the TBXL Compiler recently and found it had trouble dealing with arrays. This:

     

    100 B(2,0)=B(2,2)-D(1,1)-D(1,4)-D(1,6)=B(2,0)

     

    Does just fine in the Interpreter - but compiled will crash on execution, reporting a Dim error. One dimensional arrays do the same thing. Strangely, this:

     

    100 X=B(2,2)-D(1,1)-D(1,4)-D(1,6):B(2,0)=X

     

    Will execute but come up with the wrong number! This executed accurately:

     

    100 X=B(2,2)-D(1,1):x=X-D(1,4):x=X-D(1,6):B(2,0)=X

     

    Similar math with regular variables have had no problems. In fact, this floating point tongue twister-

     

    100 Y=(SIN(XT)+SIN(XT*3)*0.4)*56

     

    Worked perfectly.


  12. I clipped off the DIN cord of a dead A8 supply years ago, but I'm funny that way. I think I saved the AC side as well. When I'm old and senile I'll probably be one those hoarders you see on TV. I'm wondering if there is any reason why I shouldn't splice the DIN onto the +5v lead from a spare molex connector on the modern PC PSU I use for my A8's hard drive? A PC supply would have plenty of current, I think. It's a Dynex from Best Buy, perhaps dependability might be an issue, it might make an Ingot seem safe. I haven't checked the voltage, how picky is an Atari? (130 XE) It would be nice to reduce cord clutter. My system has 4 power cords, monitor cable, two SIO cables, SCSI, and Centronics cables, and that's just the Atari!

×
×
  • Create New...