Search results

  1. superbenk

    68k Source code available online for Megaroids ][?

    80 pages of code transcription? How hard could it be? :D
  2. superbenk

    Classic Mac OS WiFi Supplicant For 68k?

    Are you asking about a wifi network adapter for a 68k Mac? If so, check out the PiSCSI as it emulates an ethernet card using a Raspberry Pi's wired or wireless networking. https://github.com/piscsi/PiSCSI/wiki
  3. superbenk

    ThinkC [Study Group 1] Drawing on the Macintosh

    Compiling with 68020 instructions was indeed the problem. Thank you! Appreciate you all being so patient with this n00b :) Reading some of the other comments in the threads makes me realize just how much of a programmer I AM NOT! But it's still fun to learn.
  4. superbenk

    ThinkC [Study Group 1] Drawing on the Macintosh

    Ah, I'll check that. In the meantime I finally got the right MacsBug installed in my 7.5.5 image & it looks like this when it crashes on an SE:
  5. superbenk

    ThinkC [Study Group 1] Drawing on the Macintosh

    Running this from within THINK C on the SE runs out of memory which is why I was compiling it to a binary first.
  6. superbenk

    ThinkC [Study Group 1] Drawing on the Macintosh

    Just tried removing the non-black/white colors from the code & it still crashes the same way.
  7. superbenk

    ThinkC [Study Group 1] Drawing on the Macintosh

    I have tried running it from within THINK C with the same results. I have Macsbug on my 6.0.8 image which also crashes the same way. I still need to get it installed to my 7.5.5 image though so I'll do that later today.
  8. superbenk

    ThinkC [Study Group 1] Drawing on the Macintosh

    I'm trying to understand why the Mondrian app fails to run on a Mac SE but works on the emulated Mac II? Here's what I get: Mac SE crash: Mac II success: Code: (See attached "Mondrian.c.txt")
  9. superbenk

    PiStorm on the Macintosh SE

    I just want to pretend my SE is a SE/30! 😀
  10. superbenk

    PiStorm on the Macintosh SE

    I'm also interested in the current state of this project. Sounds extremely interesting!
  11. superbenk

    ThinkC [Study Group 0] Getting your Development Environment Setup & Hello, World!

    Bingo! It was the missing `InitWindows();`. Thank you!
  12. superbenk

    ThinkC [Study Group 0] Getting your Development Environment Setup & Hello, World!

    This was me copying/pasting code I was trying to troubleshoot with. The screenshot is of the program running without that line commented out. I pasted in the wrong code here.
  13. superbenk

    ThinkC [Study Group 0] Getting your Development Environment Setup & Hello, World!

    I just learned about this & am excited to jump in (albeit quite late!) to learn some C in a fun way! I'm developing in Mini vMac on a MacII w/ 8MB RAM running System 7.5.5 w/ THINK C v5.0. I've gone through the "ShowPICT" example in Chapter 2 but it breaks in a weird way that I don't...