Jump to content

Bruce Tomlin

Members
  • Content Count

    3,690
  • Joined

  • Last visited

Everything posted by Bruce Tomlin

  1. AHA! One, he's running FTP on a wierd port. Two, he's running the Windows 2000 FTP server. Three... the server doesn't support passive mode. So not only will it not work behind a firewall, your average web client probably won't know how to use active mode. Great way to keep your bandwidth usage down. "ftp -A " worked for me. Now to see about how to get it out to you guys. Looks like a job for Bittorrent. I guess I should figure out how to set up a BT tracker.
  2. For those of you wanting to see the Mythiconsole thread... http://atariage.com/forums/viewtopic.php?t=52214
  3. Even if the games did suck, the story is cool. Hearing that he had no TIA documentation to work from easily explains why the games were so crappy. This even beats out the "US Games re-uses Space Jockey as a 2600 subroutine library" story. The games sucked, but they sucked so badly as to be memorable in their suckage. It's one thing to suck, but it's another thing entirely to suck so much you become famous for it. I presume he is aware by now that he's got the easy road to a VIP guest pass at just about any classic games convention, right? :-)
  4. It would be so much better if this were for an MMC card instead of CF. Not only is MMC smaller, but it's got a lot less pins to solder down. It worked great for the Cuttle Cart 2, aside from the minor issue of the CF socket used in the CC2 going out of production. Even a Playstation 2 memory card would be nice. I'm not aware that any Colecovision carts used bank switching, or even on-cart RAM. A Colecovision equivalent of the Cuttle Cart would be much easier to design than a 2600/7800 version. It would be even better if it could be designed to somehow replace the Adam tape drive. Yes, that would probably mean patching the Adam BIOS, but it would be the ultimate in cool.
  5. That first picture is at digital camera resolution with only a HEIGHT and WIDTH attribute to shrink it down to a thumbnail. In addition to taking almost an entire minute to load over DSL, this is a great way to suck up bandwidth and piss off your webmaster. It needs a downsampled image VERY badly. In fact, digital camera resolution is too much even for the linked image.
  6. makes me wonder, what's the maximum load the 6532 can drive ? The joystick ports have a +5 volts power supply pin. The 6532 doesn't need to provide power. The 6532 outputs can definitely drive one TTL input, and I wouldn't be surprised if they can drive four or five of them. (Standard TTL and LS TTL can have a 10:1 fan-out to the same type of TTL input.) I have in the past used the joystick ports and a MAX232 chip to do 2400 baud serial output.
  7. I wonder if the dielectric grease (which you can get at an auto parts store) that I use for rebuilding Colecovision power switches will work for this purpose.
  8. I will say one thing about programming the 7800, after having written some code over the past month. I really wish there was some sort of "jump instruction" in the display list handling. If you have a mix of fixed and moving objects on the same scan line, it looks like you have one of two options: 1) build the display lists from scratch, using the wonderfully expensive STA (ptr),Y addressing mode - this can easily take more than 1/60 of a second. Because of this, I understand why they made Maria II. 2) pre-build the display lists with "holes" at the end of each scan line large enough for every possible object in that zone (remembering that objects appear in two zones if they're not all vertically zone-aligned). Then just fill in the holes. I initially started with method 1, for a pair of 8x10 sets of 16x16 pixel blocks, each as a separate object, generated from an array of block type indices. Not too efficient. Then I changed it to use character mode. This meant every block had to share the same colors as its neighbors, but I wasn't too worried about this. The code to generate the character table from the blocks array actually took more than 1/60 of a second. So I changed things around to update both arrays at the same time. A little harder to read the code, but it was fast enough to be useful. My next plan, once I get an important game mechanics algorithm working, is to try method 2 so I'll have enough CPU time to run that new algorithm. I only have two moving sprites, so this won't be much of a RAM waster, but it will be a big CPU saver. It sure would be nice to see how Robotron was programmed to handle a lot of sprites on the same line.
  9. I gotta agree about covering over those EPROM windows. Foil tape would be the best thing. You need something which blocks the UV rays. It's not important when it's just a test burn of something, but when it's a soldered down game for which you don't have the ability to reprogram it, stickers on the EPROM windows can mean the difference between 10 years vs 15 or 20 years of life for the data. "Bit rot" is a real problem for games on EPROM. In an extreme case (chip in the sunlight daily), it can only take months. This happened once at a previous job when I found an erased boot ROM in an unused controller unit that had been left in the sunlight with its top off for what couldn't have been more than a year.
  10. Programming info for the 7800 can be found with Google. All the 7800 programming info documents have been scanned (and available as a PDF of scans), and also as plain text. I'd search for register names (P0C1 P1C1 P2C1 OFFSET DPPH DPPL) as the most efficient way to find something.
  11. The only thing I go there for is clearance stuff. I still stay away from them because of the DIVX fiasco.
  12. Where did you get the adapter board from? That doesn't look like a Nintendo adapter board, it looks like one with crowbar circuitry to confuse the lockout chip. Have you tried other Famicom boards with that adapter? Have you tried it on a top-loader?
  13. Swap the 4052? Those things are soldered in, so it's not quite that easy.
  14. No way that label could have been for even a planned or canceled 2600 game. It's a standard Colecovision label, with the wrap-around and everything. Most 2600 carts had separate main and end labels. Are there any 2600 cart shells that the label will fit on? If there are, would they likely have been used? Someone just goofed up. This was the days of Kroy lettering and X-acto knives. Maybe they pasted down the wrong text as a placeholder. Maybe someone didn't know what he was doing and just slapped it down to get the artwork out the door, after the original guy got laid off or moved to some other project. Do you actually believe that the label art grunts back in 1983 would know the difference between a 2600 label and a Colecovision label?
  15. I don't see why not. Just take a cartridge slot from a dead unit and wire it up. You might need a transistor amplifier on the video output and a big capacitor on the audio, but basically it should work.
  16. The serial number means nothing because it's too easy to swap boards and cases around. Flip it over, then look at the lower right corner of the circuit board through the slits. Do you see a "REV 3" in there? If not, your board may not have been compatible to begin with.
  17. When I want to clean a slot in a classic system, I use a cut down piece of those old NES cartridge slot cleaners that are made with a thick piece of tape wrapped around the end. (Like "The Eliminator".) When it gets dirty, just use a pencil eraser to clean the tape on the cleaner.
  18. Are you sure your 5200 was compatible with the 2600 adapter in the first place? Only one board revision of the 4-port unit could support the 2600 adapter without modification.
  19. Did anyone else notice that the older prototype has the same basic 5-piece hinge arrangement?
  20. I never bought an SP. I knew there would be a revision after it to replace my regular GBA. I already had a regular GB (bought used at a thrift store), and a GBC (bought to play Pokemon back in the days before the franchise had been run into the ground and then a grave cemented over the hole, so I could link cable it with my regular GB), so there was no way I was going to get an SP. I mean, I hardly played the GBA enough to justify needing a backlight anyhow. The spiffiness of the DS is my reward for ignoring the SP. I never liked the way the SP looked anyhow. I mean, that's really all it is, just a different look. And a backlight. Which they should have had to begin with. The SP won't run any games that the GBA won't run, so I'm not losing out by ignoring it.
  21. Amen to that, brother! I have no interest in getting one of those fragile bricks, even less so since the X-2 will probably not even be backwards compatible! It's the only system that I intentionally don't have. The few others that I don't have (3DO, TG-CD, Neo Geo, etc.) are due to rarity and/or lack of interest.
  22. Your best bet might be a video digitizer card. They're usually multi-standard on their video inputs. The problem is that most classic games used RF, and I wouldn't expect an All-In-Wonder type card to support multi-standard RF. And PAL uses multiple RF standards anyhow, depending on which country you're in.
  23. They wouldn't work properly, but at least they'd do something. I haven't tried running a PAL cartridge yet, but I would expect nothing worse than the bottom of the screen would be cut off because the PAL display list would be longer, and the game might run a little fast. (With the reverse, NTSC on a PAL unit, the bottom of the screen would probably just be flashing garbage from running off the end of the display lists.) Then again, I just realized that my particular one-byte edit only bypasses the encryption check. It doesn't bypass the region check. So they probably still wouldn't work, even with my mod, if PAL 7800 carts set the region byte at FFF8 to anything other than FF.
×
×
  • Create New...