Search results

  1. J

    TwiSlot PCI Riser and ComSlot2 NIC repro in widened CS riser form factor

    I don't know. USB has more CPU overhead than a PCI NIC? Old World Macs had 10Base-T. New World Macs got 100Base-T. Power Mac G4 (Gigabit) and later got 1000Base-T.
  2. J

    TwiSlot PCI Riser and ComSlot2 NIC repro in widened CS riser form factor

    The Sonnet Tempo Trio problem was mostly solved at: https://68kmla.org/bb/index.php?threads/the-great-gazelle-pci-hack-thread-part-2.38360/post-467825 There's a patcher: https://68kmla.org/bb/index.php?threads/the-great-gazelle-pci-hack-thread-part-2.38360/post-467844 And a video...
  3. J

    Dumb Question: I Need To Get A PCI USB Card For My G4 MDD, But...

    A USB 3.0 card uses XHCI. You need USB 2.0 EHCI or 1.1 OHCI for PowerPC Mac unless you want to try and port a XHCI driver (there exists a third party open source XHCI driver for Mac OS X but I don't think it's appropriate for Mac OS X 10.4 or 10.5 but I haven't tried). USB 1.1 is 12 Mbps (≈1.2...
  4. J

    Help loading GR, HGR, DGR AND DHGR image files in the Apple II

    Seems like Buckshot is not saving DLO images correctly. In my source test image, the diagonal line reaches the bottom line. In the DLO result, the diagonal line doesn't reach the bottom line. It seems the image was stretched horizontally so that only 40 of the 80 pixels are represented. It looks...
  5. J

    Help loading GR, HGR, DGR AND DHGR image files in the Apple II

    My program is correct. Change line 50 to write the line number as a character between A and X (1 to 24) 50 FOR X = 0 to 39 : POKE 1024+OFFSET+X,Y+1 : NEXT What is the size of the binary created by buckshot? If it's 24 * 40 = 960 then it's not including screen holes. It might be saving the file...
  6. J

    Help loading GR, HGR, DGR AND DHGR image files in the Apple II

    The COMPUTE! magazine issue I referenced is at internet archive and contains machine language for calculating HGR line address.
  7. J

    Help loading GR, HGR, DGR AND DHGR image files in the Apple II

    If you load the GR image to $2000, then this should be able to copy it to $400 (if my math is correct): 10 FOR Y = 0 TO 23 20 AB = INT(Y / 8) 30 CDE = Y - AB * 8 40 OFFSET = CDE * 128 + AB * 40 50 FOR X = 0 to 39 : POKE 1024+OFFSET+X,PEEK(8192+OFFSET+X) : NEXT 60 NEXT But it's really slow...
  8. J

    Help loading GR, HGR, DGR AND DHGR image files in the Apple II

    There's some info at https://en.wikipedia.org/wiki/Apple_II_graphics Basically, the graphics pages have screen holes between some rows. The screen holes for HGR aren't used for anything so you can overwrite them without issue with a BLOAD. The screen holes for GR are used by various things...
  9. J

    PPC Blokz RAVE released for the end of MARCHintosh 2024

    I tried Mac OS 8.6 in DingusPPC but got an error "DrawSprocketLib--DspGetVersion" not found. I don't have a working Mac OS 9.1 yet for DingusPPC. I can try it in SheepShaver or on a B&W G3.
  10. J

    SATA? In an old world PCI Power Mac?! IMPOSSIBRU! (Updated 11/22/23)

    There's a build of my flashrom fork at https://forums.macrumors.com/threads/question-how-powerful-of-a-graphics-card-will-work-in-a-beige-power-macintosh-g3.2303689/page-32 but I haven't tried it with the -p satasii option. Of course, no PCI method is going to work for a flash chip that needs a...
  11. J

    SATA? In an old world PCI Power Mac?! IMPOSSIBRU! (Updated 11/22/23)

    I think @dosdude1's flashrom for Linux on PPC Mac should work for Debian. My flashrom fork should work in Mac OS X (PPC and Intel) but I need to make some updates to make my source code buildable on PPC Mac OS X 10.4.11 again. I'll work on it today. I don't think anyone's used it yet to flash a...
  12. J

    HFS Read/Write Supported in macOS 12 (FuseHFS) Updated

    Check the permissions? ls -l vmacMountable Does the mounted volume have the FUSE volume icon? Does "Get Info" of the mounted volume show "Format: Unknown (macfuse_hfs)"? I'm using macOS 12.7.2 Monterey. My HFS disk images have file extension .dmg and exist on a partition that has "ignore...
  13. J

    SATA? In an old world PCI Power Mac?! IMPOSSIBRU! (Updated 11/22/23)

    I ported FlashROM to PPC Mac OS X. See the previous page (page 5) of this thread.
  14. J

    Diagnostics via OpenFirmware

    Looking at MDD Open Firmware dump, it appears that diagnostic boot doesn't do anything except try to do this command: boot enet:,diags where enet is the default diag-device and ,diags is the default diag-file I don't say any code for handling ,diags Another default for diag-file is bootp There...
  15. J

    Documentation for DB15 to VGA adapters

    I updated my post above with the correct 9 dip switch info from https://68kmla.org/bb/index.php?threads/mac-to-vga-monitor-adapter-struggles.45423/post-502564
  16. J

    68k MFS: sector by sector hex dump

    Not all disk images have the overhead of a header. Check the first block of a disk image to see if it is a header or if it is part of the disk data. The disk image needs to be not sparse and not compressed. In Mac OS X, you would use dd in Terminal.app to read and write blocks and xxd to...
  17. J

    G4 PPC Towers with Modern Monitors Adapter

    But for best results, you want to keep the signal digital. Don't all/most G4 towers have DVI output? That's equivalent to HDMI up to 165 MHz (HDMI 1.1 ≈ 1920x1200@60Hz). You just need a passive DVI to HDMI adapter for that. Beyond that you're dealing with Dual Link DVI (up to 330 MHz) which will...
  18. J

    68k Determining if screen is set to color vs b&w at runtime in Sys 7

    All the C compilers for classic Mac OS support pascal because Mac OS apps was original programmed using Pascal. Look at all the Inside Macintosh books - they show APIs and code examples written in Pascal. pascal in C alters the parameter passing calling conventions to match those of Pascal - at...
  19. J

    68k Determining if screen is set to color vs b&w at runtime in Sys 7

    To determine color vs grayscale, For indexed color modes (8 bit or less), can you examine the color table (pmTable) to see if it has any entries that don't have red = green = blue? Regarding drawing icons, maybe try going to...