I Ported Mac OS X to the Nintendo Wii

(bryankeller.github.io)

467 points | by blkhp19 2 hours ago

35 comments

  • NetOpWibby 1 hour ago

      Before figuring out how to tackle this project, I needed to know whether it would even be possible. According to a 2021 Reddit comment:
    
        There is a zero percent chance of this ever happening.
    
      Feeling encouraged, I started with the basics: what hardware is in the Wii, and how does it compare to the hardware used in real Macs from the era.
    
    I LOL'd
    • glenstein 1 hour ago
      I almost think such projects are worth it just to immortalize comments like these. There's a whole psychology of wrongness that centers on declaring that not-quite-impossible things will definitely never happen, because it feels like principled skepticism.
      • inlined 24 minutes ago
        That used to be my thing: wherever our ops manager declared something was impossible, I’d put my mind to proving her wrong. Even though we both knew she might declare something impossible prematurely to motivate me.

        My favorite was “it’s impossible to know which DB is failing from a stack trace”. I created STAIN (stack traces and instance names): a ruby library that would wrap an object in a viral proxy (all returns from all methods are themselves proxies) that would intercept all exceptions and annotate the call stack with the “stain”ed tag.

      • blkhp19 1 hour ago
        I'd be lying if I said it wasn't a very tiny part of my motivation :)
        • bombcar 20 minutes ago
          It's a variation of "because it's there" when asked why would you climb some giant mountain.

          Impressive work! Now run Dolphin on it. ;)

    • nancyminusone 1 hour ago
      Gotta love that particular Redditors follow up comment:

      >Go ahead and downvote me. I am correct on every single thing I said

      • dfxm12 53 minutes ago
        The comment score is 1. It doesn't even have a controversial flag. The gamification of social media is a mistake.
      • dpoloncsak 1 hour ago
        Tempted to necro a 5 year old reddit post just to tell that guy he was wrong, honestly
        • Jeremy1026 31 minutes ago
          User hasn't posted in 4 years. Sadly, they'd probably never see it.
        • ErneX 31 minutes ago
          I wanted to, but no replies are allowed now :)
        • noman-land 49 minutes ago
          Make a new thread calling them out personally.
        • oceansky 1 hour ago
          Comments are blocked there
  • rayiner 1 hour ago
    Not only is this an insanely cool project, the writeup is great. I was hooked the whole way through. I particularly love this part:

    > At this point, the system was trying to find a framebuffer driver so that the Mac OS X GUI could be shown. As indicated in the logs, WindowServer was not happy - to fix this, I’d need to write my own framebuffer driver.

    I'm surprised by how well abstracted MacOS is (was). The I/O Kit abstraction layers seemed to actually do what they said. A little kudos to the NeXT developers for that.

    • blkhp19 36 minutes ago
      I felt similarly. The learning curve was a tad steep, especially since I had never written a driver before, but once I figured out how to structure things and saw the system come alive, I grew to appreciate the approach IOKit takes.

      With that said, I haven't developed drivers for any other platforms, so I really can't say if the abstraction is good compared to what's used by modern systems.

    • spijdar 1 hour ago
      IOKit was actually built from the ground up for OS X! NeXT had a different driver model called DriverKit. I've never coded against either, but my understanding was they're pretty different beasts. (I could be wrong)

      That said, indeed, the abstraction layer here is delightful! I know that some NetBSD devs managed to get PPC Darwin running under a Mach/IOKit compatibility layer back in the day, up to running Xquartz on NetBSD! With NetBSD translating IOKit calls. :-)

      • steve1977 5 minutes ago
        Funnily enough, there is a (different) DriverKit in macOS again now ;)
      • erichocean 1 hour ago
        As I remember it, they were basically the same—but IOKit is C++ (with restrictions) because 3rd party developers didn't want to learn Objective-C.

        But that's a hazy, 20 year old memory.

    • steve1977 9 minutes ago
      I guess having targeted multiple architectures and in the case of OPENSTEP also operating systems early on certainly helped.
    • geerlingguy 1 hour ago
      And there are enough parallels to Linux's stack, I'm thinking about looking through the Linux on Wii project more and comparing how it handles fb issues in comparison. I loved reading this whole post, crazy how many OSes have now been run on the humble Wii!
  • guyzero 1 hour ago
    In addition to the incredible engineering work here the OP casually flexes by showing the development happening _in an economy class airplane seat_.
    • jedberg 20 minutes ago
      And the guy next to him is just staring at his phone, probably thinking, "I'm not even gonna ask".

      Although if it were me I'd probably annoy the heck out of him asking why he had a Wii on the airplane!

    • nine_k 1 hour ago
      This is the most incredible part. I cannot even use a laptop adequately in an economy class seat, I cannot position the screen so that I could see it, and the keyboard so that I could type on it, at the same time. (To say nothing of connecting a Wii.)
    • pa7ch 1 hour ago
      I can't imagine concentrating on a complicated project like that on the go, but I went back to stare in awe at said picture and I think its a train or bus. Still a flex.
      • badc0ffee 51 minutes ago
        Still looks like a plane to me, with rows of 2-3-2 seats.

        There are definitely no buses that wide.

        • blkhp19 46 minutes ago
          My Wii has been on many planes and trains - and yes, there is a photo of each in my post.
    • eastbound 1 hour ago
      Which means no access to Claude.

      Can’t wait for his sequel “I received a Cease and Desist Letter from Apple; Feeling encouraged, I registered the trademark ‘Wii subsystem for macOS’”.

    • slackfan 1 hour ago
      What's flex-worthy about this? There's a lot of dev work that goes on in economy class airplane seats. Or are VC valley programmers so rich they fly business everywhere?
      • badc0ffee 48 minutes ago
        It's uncomfortable and awkward (the Wii was on his leg in the first shot), and often you need to break concentration and pack things up to let someone out of or into their seat.
    • varispeed 50 minutes ago
      Imagine if he was developing it on a laptop found at a refuse site that was still charged, just hiding in the hedge so that guards wouldn't see him.
  • k38f 6 minutes ago
    Debugging kernel panics on a Wii in an economy seat is a level of focus I can't even imagine. Most people can't read a book on a plane without losing their place every 5 minutes.
  • frakt0x90 1 hour ago
    If all the AI stories on this site were replaced with amazing stuff like this, the world would be a better place.
    • jjice 9 minutes ago
      I probably have rose colored glasses, but this is what I associate with Hacker News when I first started coming to this site. Truly absurd projects for no reason other than the love of the game and detailed write ups.

      I'm not an LLM post hater, but it definitely has been a bit draining lately. This is exactly what I love to see here.

    • kstrauser 1 hour ago
      Get to submitting! Be the change you want to see.
  • zadikian 6 minutes ago
    My favorite part of this is the detour to ask for the IOUSBFamily src on IRC
  • soci 1 hour ago
    Back in the day I was a hardcore Mac nerd and became a professional at it too. My best reverse-engineering trophy was building one of the first "iOS" apps when there was not an official appstore for the iPhone.

    But man, this is way ahead of what I could do. What this dude accomplished blew my mind. Not only the output (running MacOS on a Wii), but the detailed post itself. A-MA-ZING.

  • mackid 8 minutes ago
    Congrats, great project and great writeup. That would have won MacHack back in the day.

    Now that the MacBook Neo has an A18, I wonder if you could get MacOS running on an iPhone? :)

    • Xerox9213 2 minutes ago
      Or better yet, an iPad!
  • nickpeterson 24 minutes ago
    The one that really bugs me is the Apple TV. It would be a great little box to use for terminals/thin client style work and there are a ton of old cheap ones. Having a $50 dollar used box that was low power and could run OSX would be great.
    • zadikian 13 minutes ago
      The original one does run a modified OS X Tiger. I jailbroke it a while ago to run custom stuff, but didn't do much with that. Just remember being able to VNC or SSH into it.
  • leonidasv 1 hour ago
    Nice work and write-up!

    A side note: you embedded .mov videos inside <img> tags. This is not compatible with all browsers (notably Chrome and Firefox), which won't load the videos.

    • efdee 1 hour ago
      If it's not working on Chrome nor Firefox, it's safe to say it's incompatible with almost all browsers.
      • blkhp19 1 hour ago
        I only tested on Safari - whoops! Fixed now.
        • tverbeure 1 hour ago
          Minor usability comment: the screenshots are too small to be readable. Whenever that's that case in my blog posts, I make those screenshots clickable and add (Click to enlarge) below it, to make it easier for readers to see the image are original resolution. In markdown, I do that like this:

          [![Image comment](image_url.png) ](image_url.png)

          (Of course, I can also right-click and do "Open image in new tab", but that's one click extra...)

          Congrats on the awesome project, BTW! You were lucky that I wasn't sitting next to you on the plane. I would have wasted so much of your time asking dumb questions.

          • blkhp19 22 minutes ago
            Images now expand when clicked - thanks for the feedback!
      • leonidasv 1 hour ago
        It works on Safari.
    • blkhp19 1 hour ago
      Whoops, thanks! Fixed.
  • monkpit 2 hours ago
    > There is a zero percent chance of this ever happening.

    Honestly, I would have said the same. Great work!

  • tiffanyh 1 hour ago
    Amazing work.

    If you like this story, you might also like the story of how Mac OS X was ported to Intel as well.

    https://news.ycombinator.com/item?id=4091216

    • dormento 57 minutes ago
      Oof linkrot :(((((

      I remember reading this back then. Amazing story. All the secrecy, and needing to be a very small team.

  • vsgherzi 50 minutes ago
    This is some amazing work, a good reminder to dig more into operating systems for myself!
  • unanonymousanon 1 hour ago
    This is extraordinary, not only pushing the limit but documenting everything so clearly to show people what can be accomplished with time and dedication. Thank you for such thorough documentation, and congrats on getting it done!
  • WorldPeas 1 hour ago
    Given that the original Apple TV ran on a modified version of macos, what are the chances one could turn an old wii into an Apple TV..?

    EDIT: also, I just noticed on a second pass the system is addressing 78mb of ram, potentially meaning the ram spans the gddr3 and sram, I'm amazed this works as well as it does with seemingly heterogeneous memory

    • zydeco 59 minutes ago
      I'd say there is a zero percent chance of this ever happening :D The original Apple TV was an Intel Core Solo with 256 MB of RAM and an nVidia GPU, running a modified Mac OS X 10.4 that booted into something similar to Front Row instead of Finder.
      • WorldPeas 35 minutes ago
        Oh interesting, it looks like that geforce had an entire 64mb of gddr3 too, it'd still be fun to see if one could limbo that low, though I agree that save for upgrading the BGA ddr3 of the wii to something more the size of the dev kit had(128mb GDDR3)
    • CrazyStat 46 minutes ago
      Apple TV came after the switch to Intel processors, so you would have to have some kind of reverse-Rosetta layer to run it on a PowerPC Wii.
      • zadikian 11 minutes ago
        Tiger had a native PPC version too
  • bottlepalm 1 hour ago
    And here I am shopping for Macs because getting a hackintosh working from a VM on Windows is too difficult for me.
  • kogasa240p 14 minutes ago
    Wonder if it can happen on the Wii U
    • blkhp19 3 minutes ago
      With the extra RAM, higher clock speed, and no need to waste CPU cycles converting YUV -> RGB framenbuffers - I bet it would be!
  • swiftcoder 1 hour ago
    Damn, that's some dedication! Congrats on getting it running
  • MaxLeiter 2 hours ago
    Great write-up. I love hardware running software it shouldn’t support
  • mghackerlady 2 hours ago
    I'm pretty sure someones done this for the 360. Also, doesn't NT have a wii port?
  • zdware 1 hour ago
    Fun post.

    Always great when your debugging feedback is via a led xD

  • xoxxala 1 hour ago
    Very neat project and an extremely enjoyable read.
  • rado 44 minutes ago
    Great, how about on iPhone?
  • nticompass 2 hours ago
    This is awesome! I can't wait to plug in my Wii and give it a try myself.
  • davenporten 2 hours ago
    Hahaha! Yes! We need more of this in the world, love it!
  • c0_0p_ 1 hour ago
    Fantastic work and a great write up.
  • hirvi74 2 hours ago
    Exceptional work. While it may not mean much, I am truly impressed. I like to toy with reverse engineering here and there, but such a port like this would take me multiple lifetimes.

    Not to distract too much from the main topic, but what do you think about the Hopper disassembler? I have only used Radare2, IDA Pro, and Ghidra. Though, I haven't used the latter two on MacOS. What do you prefer about Hopper? I have been hesitant to purchase a license because I was never sure if it was worth the money compared to the alternatives.

    • blkhp19 1 hour ago
      Thank you for the kind words!

      I like using it for disassembling UIKit (for my day job working on iOS apps), and overall, I like the UI/UX and how it feels like a native Mac app.

      I've tried Ghidra, and while extremely impressive and capable, it might be the most Java-feeling app I've ever used. I'd love for someone to whip up an AppKit + SwiftUI shell for it.

      • xandrius 1 hour ago
        You made me curious: why would you need to disassemble UIKit for iOS as part of your day job?
        • blkhp19 1 hour ago
          There are bugs and undocumented behaviors that need to be understood in order to be worked around - I wish it wasn't the case but such is life developing for closed-source platforms.
        • crazysim 1 hour ago
          Sometimes things aren't documented and sometimes they could be documented wrong.
      • hirvi74 1 hour ago
        > I like using it for disassembling UIKit (for my day job working on iOS apps), and overall, I like the UI/UX and how it feels like a native Mac app.

        You are correct about the UI/UX. I do think Hopper is ahead of others in that regard. Though, Radare2 being a CLI tool is nice as well. Though, I haven't attempted to use Radare2 for MacOS/iOS disassembly. Though I must ask, why are you disassembling UIKit? Looking for private API behavior or working around bugs? I've been learning more about iOS in my spare time, because despite my love for Swift, I have never used it for iOS. I only have used Swift for MacOS automation, i.e., AppleScript replacement via the Accessibility, Core Foundation, AppKit, etc..

        > Ghidra, and while extremely impressive and capable, it might be the most Java-feeling app

        I chuckled while reading this because I had the exact same thought when I first used Ghidra. I haven't tried Ghidra on MacOS because I will not taint my machines with the impurities of Java. I also do not want to enable Rosetta, so that was another obstacle in trying Ghidra on MacOS. In Ghidra's defense, using Java was a pragmatic choice. The "write once, run anywhere" promise of Java is likely a near-necessity for a disassembler for government operations.

        • blkhp19 56 minutes ago
          > Looking for private API behavior or working around bugs?

          Exactly this!

  • serhack_ 1 hour ago
    awesome, good to see some real content from pre-AI moment
  • rdanieli 25 minutes ago
    nice!
  • lanyard-textile 2 hours ago
    Absolutely atrocious. Congratulations!

    That's the hacker spirit.

  • eats_indigo 1 hour ago
    honestly expected this port to be headed in the opposite direction
  • stavros 1 hour ago
    This is excellent, though if you had chosen another OS, you could have called the project Wiindows.

    EDIT: Oh interesting, the final paragraph says NT has been ported, didn't know that. Sadly, no pun is mentioned in that project.

    • snazz 1 hour ago
      “entii-for-workcubes” is a pretty good pun!
      • stavros 1 hour ago
        I don't know man, "Wiindows" was right there and they chose "entii"? I weep for the missed opportunity more than anything.

        Maybe it was a legal worry.

  • rvz 1 hour ago
    The post is a work of an actual hacker who knows what they're doing. Zero mention of "I used Claude" or "Used AI" to understand what is needed for accomplish this task.

    This is exceptional work. Unlike the low-effort slop posts I see here on "Show HN".

    • blkhp19 1 hour ago
      I used plenty of non-agentic AI to help understand the XNU codebase, and also research various topics. It wasn't always correct, but it certainly helped at times! My philosophy for this project was to use it as a learning tool - since that was kind of the whole point of me attempting this :)
    • dirasieb 37 minutes ago
      looks like they did use AI, swing and a miss for the luddites once again!
    • bigyabai 1 hour ago
      Ah, the Procrustian definition of "real hacker", where using AI disqualifies you but using Github pages is considered only a minor infraction.

      The build-in-public era of hacking has really turned this field into an influencer economy.

      • jasaldivara 1 hour ago
        Whats wrong about Github pages?
        • dewey 1 hour ago
          A real hacker would obviously never use a Microsoft product, or worse, post on a VC funded web forum!
  • zenlot 22 minutes ago
    [dead]
  • anskksdkdkdk 1 hour ago
    [flagged]