Search results

  • Board Nominations
    Nominations have now closed and the results are available here.
  • Hey Guest, MARCHintosh 2026 is upon us. Check out community projects, join GlobalTalk, and have fun!
  1. L

    Analog board (video) testing without logic board

    In theory, yes, if you can get your hands on a Raspberry Pi Pico or other RP2040-based board running CircuitPython. I made a script and PIO program to generate a classic mac 512x342 signal to use to test another program that converts that signal to 1024x768 VGA. Going by this diagram...
  2. L

    SCSI to USB adapter reverse engineering

    I didn't want to volunteer Eric for more work, but it could be a handy debugging tool to have a USB-SCSI bus sniffer or be able to replay transactions against development code.
  3. L

    The Influence of Steve Jobs

    I feel I've seen a dip in quality control since we lost The Steve. With the OS developers no longer living in mortal terror the amount of logged errors you see in Console on a healthy and idle system has exploded. I don't think jobs would have stood for a steady stream of "expected" errors, even...
  4. L

    SCSI to USB adapter reverse engineering

    I suspect that they're bit-banging out SCSI from the EZUSB chip(s) much like BlueSCSI, RaSCSI, and SCSI2SD do, just in reverse. The BlueSCSI hardware could probably be reprogrammed to pass SCSI data in & out the USB port if someone finds a good driver interface to copy. I don't think there is...
  5. L

    Osborne 1 Bluetooth keyboard

    While pondering turning an Osborne 1 case into the sleeper gaming PC and whether to use the original CRT I realized that upgrading the keyboard to Bluetooth would be an easy first step. The Osborne keyboard doesn't have any brains, the cable just exposes the raw keyboard matrix making it super...
  6. L

    Mac OS 8.5.1 - Applications recovered on UDF?

    That looks like the resource forks are in AppleDouble format (https://en.wikipedia.org/wiki/AppleSingle_and_AppleDouble_formats). You'll need a modern-ish Mac with OSX to mount the UDF and then copy the files to a volume the old Mac can read.
  7. L

    Building a bootable multi-OS install Drive

    I think you can do it with just Disk Utility's restore functionality. The PPC/Intel cross-over will be limited by which Intel systems (if any) support booting from Apple Partition Map drives. I don't think OpenFirmware on any PPC Macs support booting from GPT partitioned drives. Carbon Copy...
  8. L

    Make the Apple IIe Option Card software 32bit compatible?

    The card doesn't really need to be able to deal with the full 32-bit, does it? The driver just needs to be tweaked to understand the 32-bit environment and make sure the card is allocated memory space and buffers that it can reach. It's the same sort of issue as using 8 or 16-bit ISA cards on...
  9. L

    Help with Zterm please?

    Nah, the hardware flow control lines aren't level shifted and exposed on TheOldNet modem. Out of the box it's 300 buad 8/n/1 and is wired to be a RS232 device (DCE) not a computer (DTE). I usually use mine plugged straight into a USB-Serial adapter with no cables or adapters. You do need to...
  10. L

    Xserve1,1 gives me the nope, nopity nope treatment

    Hmm. I wonder if you can use memtest86 or memtest86+ on that machine and maybe get better diagnostics of the RAM. Do the serial numbers all read the same when it reads everything as 512M?
  11. L

    Have an IBM PC compatible on the 486 or the first Pentium? Please run it for me!

    Pentium MMX 233. The first set is in a full screen command.com within Windows 98. The second set to "reboot to DOS mode" with a little overhead. It seems that most of the time on this machine is coming from print the digits to the screen...
  12. L

    Xserve1,1 gives me the nope, nopity nope treatment

    I saved some Apple fiber channel DAC cables from recycling back in the day. A pair of them fit nicely in a USPS flat rate box ($10). DM me if you're interested.
  13. L

    Connecting a Mouse to a Toshiba Libretto

    I'm pretty sure that all of the USB to PS/2 adapters out there are purely mechanical. The mouse does all of the protocol switching. Maybe you could cannibalize an older PS/2 wireless mouse receiver but all of those were much larger than the current tiny usb receivers. Bastarizing the IrDA port...
  14. L

    Adobe Illustrator - Latest RENT FREE version for Tiger?

    The RentWare didn't start until after CS6 and if my memory isn't completely faded I don't think CS6 phoned home to activate. It just did a pre-internet era license code validation. I remember the start of the RentWare clearly because we had to hold back on CS6 for a year or two before Adobe came...
  15. L

    Mac Plus analog board - horizontal flickering lines

    hmm, doesn't look like sync is dropping, just the video signal. I suspect that there's a transistor or amplifier chip taking the TTL signal from the logic board and generating the power for the electron gun.
  16. L

    [Idea] Macintosh 68k Programming Study Group?

    Like BlueSCSI or RaSCSI config tools to set image attachments or configure the WiFi on a RaSCSI.
  17. L

    Extended mode 1-bit video on second display for compact Macs

    There's only one video signal generation circuit and thus one signal being generated. It's not like a modern machine where you have multiple RAMDACs outputting the same framebuffer data that you can split or redefine. There is only a single pin being twiddled up and down to fire the CRT's...
  18. L

    A takky Mac…..

    Something you might want to try is aquarium background adhesive, an optically clear gel for sticking decorative backgrounds on fish tank. It really makes the backgrounds pop compared to just taping the background on. It might make the LCD look shaper by filling the tiny air gap between the panel...
  19. L

    Compact Mac Video Adapter

    Progress! The C SDK is naturally much fiddlier than python so it took me a while to get the Arm code working. Also, I'm out of practice thinking about pointers for feeding the DMA engine. I now have it generating a 1024x768 signal from an in-RAM frame buffer. I need to wire up the capture part...