Recent content by ClassicHasClass

  1. C

    Macintosh Portable Power Supply CR-76U

    Thanks! I am always worried my one Portable PSU might blow.
  2. C

    Macintosh Portable Power Supply CR-76U

    Any current limiter you might recommend for this?
  3. C

    Apple Network Server MacOS based ROMs found

    Hey, thank you, that's very helpful.
  4. C

    Apple Network Server MacOS based ROMs found

    I'm going through the code in the extension and I see the string but not where it is checked. What offset in the code fragment did you see that at?
  5. C

    Lead Time for JLCPCB Order?

    Did you talk to someone specific about that? I'm still getting stiffarmed and they owe me a lot more than $12.
  6. C

    Lead Time for JLCPCB Order?

    It could be the shipper. UPS still owes me $600 in tariffs that they overcharged me (it was reduced down to $51, but they still haven't sent me the difference).
  7. C

    Connect your MacOS 9 to OSM, BlueSky and Mastodon

    I actually like CodeWarrior and find it very productive to work in, but I respect your preferences. I may try to convert it anyway for my own use.
  8. C

    Connect your MacOS 9 to OSM, BlueSky and Mastodon

    I see you mention CodeWarrior for the shlbs. Can this be built from scratch in CodeWarrior? Are there .mcps available? Thank you for posting it!
  9. C

    Hardware/software you have that no one talks about.

    You mean like the Asante EN/SC? Works pretty well, considering.
  10. C

    Hardware/software you have that no one talks about.

    Weird SCSI peripherals are the best, aren't they?
  11. C

    Hardware/software you have that no one talks about.

    What a fascinating idea. I assume they were implemented as LUNs or something.
  12. C

    Connect your MacOS 9 to OSM, BlueSky and Mastodon

    Will you be offering these libraries for use in other projects?
  13. C

    PowerFox - new web browser for Leopard on PowerPC!

    That means the loader could not allocate that much stack space to your process, so you get a null pointer. If this is the browser, it's likely because your code in memory is much bigger than TenFourFox's was (you get about 2GB total which must be split between your code pages, data pages and the...
  14. C

    PowerFox - new web browser for Leopard on PowerPC!

    If you don't do it, you'll get crashes in the browser trying to run any code of substance. The test suite will mostly run, but most of those are trivial. Because so many registers need to be saved in each stack frame and calls can be recursive, it's pretty much unavoidable.
  15. C

    PowerFox - new web browser for Leopard on PowerPC!

    Yes, it was a lot easier debugging it when I could run automated tests. The command line shell was massively faster at that. It won't catch every bug but it catches a lot. Be mindful of the fact that the JIT has monstrous stack requirements. There is specific code in the TenFourFox build system...