• Please review our updated Terms and Rules here

Search results

  1. cjs

    Anyone else here really miss electronics stores?

    Well, I would call those "computer" stores, not "electronics" stores. The latter makes me think of walls of drawers filled with resistors, caps, diodes, transistors, 7400 parts etc. But they're still around; there are dozens in Akihabara. I think maybe you just need to move to a better country...
  2. cjs

    What's wrong with my timer chaining code? (3Com PCI packet driver mystery)

    That seems really weird. Can you perhaps just tell it it's a straight .BIN file, give it a starting offset of nnnn:0100h, and let it go at the code that way?
  3. cjs

    What is this? Post Photos of Mystery Items Here (vintage computers only)

    The small board in the third photo is a stand-alone SBC: it has a crystal resonator for the clock, an 1802 CPU, an NEC D446C 2Kx8 static RAM, the ROM, and the CDP1852 is a byte-wide I/O port. I'm not sure about the other small board. The MC14517 is a dual 64-bit shift register. There's no CPU...
  4. cjs

    ISA to USB - Are these anywhere to be found?

    Ooops, yes; you're absolutely correct. I left a (binary) zero off the end of my previous calculation somehow. @new_castle_j You should re-run that first read/write/read test against ports $260/$261/$260. (Though I suspect that, given your driver didn't work, this won't work. But either way, it...
  5. cjs

    ISA to USB - Are these anywhere to be found?

    Ah, your further explanation clears up a lot, thanks. Well, that's a good sign that the schematic isn't completely different, at least, and lets us know that the lowest address bit is selecting A0=read/write data and A1=write command ports. Another quick check you could do is confirm that pin...
  6. cjs

    Microdyne S-100 boards?

    Yes, the MZ-80A was part of the whole MZ-xxxx series of computers (which has a rather confusing numbering system), and these may well be coming up because they're Z80-based. It's their own architecture, and has no connection to S-100 whatsoever.
  7. cjs

    ISA to USB - Are these anywhere to be found?

    Well, this is the first we've heard in this thread about a driver, and also the first time we've seen this schematic of mysterious provenance. It's really a good idea, when you introduce something, to say where it came from and what you believe the connection is between that and the actual board...
  8. cjs

    ISA to USB - Are these anywhere to be found?

    Lol. That one has a '245 on it, too.
  9. cjs

    ISA to USB - Are these anywhere to be found?

    The latch, from its positioning and what I can see of the traces near it, looks as if it's likely latching data for the data pins of the CH375. Anyway, unless you can dump the 16V8, my only idea is to set the thing up on a test rig (or maybe just use a 'scope while it's on your computer) and...
  10. cjs

    Apple II Software Question (Track Error)

    Yes, Oregon Trail for the Apple II was copy-protected. I don't recall the details of the copy protection, but if you want a cracked version, it's available on archive.org. (That's a 5.25" version, however; it used both sides of the floppy.) Actually, it would be really nice to get a 3.5"...
  11. cjs

    The "Ahl Benchmark" of BASIC performance

    Neither I nor (as far as I can tell) you have the source code or a disassembly of that two-year newer version of BASIC-80, so I don't see how either of us could have noticed how close or far it was. And I will answer honestly: yes. Yes. That's exactly what you'd expect, since all versions of...
  12. cjs

    The "Ahl Benchmark" of BASIC performance

    Well, as a blanket statement, that is wrong. If your memory is slow enough that wait states are being inserted, merely removing the wait states will also require faster memory. (Given how slow that ROM is, this is what I had assumed that krebizfan was talking about, though tweaking other things...
  13. cjs

    The "Ahl Benchmark" of BASIC performance

    Post #46 specifically and carefully says, "A number of efforts at speeding up the Model 100 line include replacing the ROM with a faster one." [Emphasis mine.] Which was what I was pointing out when I suggested that, "you probably do agree with krebizfan that speeding up the Model 100 could...
  14. cjs

    The "Ahl Benchmark" of BASIC performance

    Fair enough, but why debunk fallacies that nobody has brought up?
  15. cjs

    The "Ahl Benchmark" of BASIC performance

    True, but I don't see how that's relevant. (I am guessing you probably do agree with krebizfan that speeding up the Model 100 could include replacing the ROM with a faster one.)
  16. cjs

    Telnet BBSing double-spacing issue

    There's no need to do an extra step (and you should not do so, because you'll be scrolling the screen even you don't see a subsequent LF). Simply call the KERNAL PLOT routine at $FFF0 to get the cursor position, change the column number to 0, and call it again to set the new cursor position. If...
  17. cjs

    The "Ahl Benchmark" of BASIC performance

    That is curious, though perhaps not that surprising; it could well be that IBM decided to re-use an existing popular pinout (it was the same on pretty much all TRS-80 models IIRC) rather change it for no good reason. Japan had a similar thing happen. The NEC PC-8001, though the third home...
  18. cjs

    Early 1990's telemarketing dialer

    Oh, nice. I was doing a bit of this as well, but got sidetracked back in mid-2022 and it's just been sitting there ever since. Perhaps we could combine efforts? PM me if you're interested.
  19. cjs

    The "Ahl Benchmark" of BASIC performance

    Well, that's the crux of our disagreement, I suppose; based on four years of on-and-off dabbling in MS-BASIC source and disassembly for three (four if you count Z80) CPUs, and now 6809 as well, across several different versions of MS-BASIC, and having done some of this disassembly myself, I feel...
  20. cjs

    Telnet BBSing double-spacing issue

    Nope. That's particularly dangerous in that it will appear to work in many situations. What you need to do is go find the standard meanings of the those control characters. ANSI X3.4-1977: The American National Standard Code for Information Interchange is a fairly readable version that is linked...
Back
Top