Earlier quoted context omitted.
To put this into perspective for youngsters, that horrible Sony SDK was considered a wonder for its time, and what kickstarted the movement away from Assembly into C for home console development, as main language. Until then, only arcades had already made the switch. On PS2, PS2Linux, Dreamcast there was already C++ support, by the way.
I’ve started to adapt my historic accounting of gaming away from hardware centric (console generations) and toward languages and compilers, and the force-multiplication they provided to developers which is tangibly evident in the products. Though these do correlate strongly with orders of magnitude of RAM being made available. - Physical logic gate era of gaming. - Assembly era - C era - OOP era - Interpreted languag…
How to Make a Nintendo 64 Game in 2026
151–160 of 312 posts
Re: How to Make a Nintendo 64 Game in 2026
#152Re: How to Make a Nintendo 64 Game in 2026
#153Earlier quoted context omitted.
it should instead say "AAA gaming is dead now" All we see out of mainstream AAA gaming is abused devs, private equity scalping, and mindless remaster regurgitation. Basically going through the same problems as Hollywood is with major films. You get a massive banger of a production every few years, and the rest is just endless money burning and developer harm. Meanwhile the good indie devs are a dice roll on if they a…
This is a very rose tinted take. AAA game development was far more brutal in the 90s. Go look up the development of Sonic Xtreme in the 90s. A brutal development process in the 90s that led to more thsn half the development team camping out in Redwood City Sega office building for months until they all got so sick half the team went on medical leave. Or Quake, where the game development process literally broke the te…
Going by interviews with the team over the decades, they had clashing personalities and poor leadership.
> AAA game development was far more brutal in the 90s.
Honestly it's probably always been brutal going back even to the early days of Atari. Companies like EA have spent three decades destroying beloved studios for profit, only to now be chewed up and spit out by PE/VC bastards themselves. A fitting end really.
Re: How to Make a Nintendo 64 Game in 2026
#154Earlier quoted context omitted.
They had stuff, but it was all proprietary. The N64 was a stripped-down implementation of the technology used on (high-end) SGI graphics workstations of the time. SGI certainly had all the required tools.
The N64 SDK docs, if not the SDK itself, leaked at one point. I would expect that by now the whole thing has leaked long ago. Come to think of it, it must have, because the bit-perfect recompilation projects are using the exact compilers from the SDK.
Re: How to Make a Nintendo 64 Game in 2026
#155Earlier quoted context omitted.
A friend of mine did posit the quandary that an "unpalatable" individual such as Luckey appears to be one of the few making consumer-friendly products: Removable, swappable battery packs, AA battery support, standard USB-C charging, easy interoperability, open sourced designs, exposed screws, teardown instructions, etc. Apparently ModRetro is even looking into making dumb TVs for gaming. It's ironic, in another world…
> It's ironic, in another world HN commenters would be lauding Luckey and ModRetro for all these virtues. Lot's of HN (and "social" media) commenters in this world evidently are; nothing ironic about it. It's just many people have a radically different set of ethics which, once they become principles, can't be easily, or at all, compromised on. And just to be fair, it's not just the what , but the how (which extends…
Re: How to Make a Nintendo 64 Game in 2026
#156Earlier quoted context omitted.
Fairly recently the chip was studied in detail and replicated. But like most systems of that era, I believe it was circumvented fairly quickly by pirates. The easiest way would be to piggyback a licensed cartridge - unlike the NES, it has to be one with the same region and bootloader as there are several lockout chip variants, but that basic technique still works.
I never saw a piggyback cartridge at the time though, or one that was obviously unlicensed. Of course, this could have more to do with Nintendo's legal pressure than with technological possibility.
Re: How to Make a Nintendo 64 Game in 2026
#157Earlier quoted context omitted.
it should instead say "AAA gaming is dead now" All we see out of mainstream AAA gaming is abused devs, private equity scalping, and mindless remaster regurgitation. Basically going through the same problems as Hollywood is with major films. You get a massive banger of a production every few years, and the rest is just endless money burning and developer harm. Meanwhile the good indie devs are a dice roll on if they a…
Main issue with AAA gaming was studios consulting people who wanted to tell gamers what they should want, using their capital on paying influencers and media to demonize said gamers for rejecting their games and so on. That's what pisses off the mostly straight hetrosexual male crowd that make up most of the gaming market. A big reason why many east asian game studios are doing so well by rejecting that tried and fai…
Re: How to Make a Nintendo 64 Game in 2026
#158Earlier quoted context omitted.
Comparing a run-of-the-mill defense contractor to a serial rapist and murderer is certainly up there in the most unhinged justifications that I've seen on HN.
[flagged]
Careful. You're one step away from playing out the "Yet you participate in society. Curious!" meme. Besides, many people who are not in the Anduril fan club already boycott Microsoft for their ethical transgressions.
Re: How to Make a Nintendo 64 Game in 2026
#159Wow the ModRetro units are really polished... Look great with more than a nod to the original system designs. Anyone know what Nintendo's stance is on the companies making these kind of "brand inspired" retro products?
Undoubtedly their legal team is at work 24/7 finding every angle at which to unleash legal hell upon it.
Re: How to Make a Nintendo 64 Game in 2026
#160Earlier quoted context omitted.
> It may be counterintuitive at first, but why wouldn't be possible? For the same reason it wasn't possible at the time for a third-party to make N64 cartridges themselves to avoid Nintendo's fees. But I assume these lockout chips are replicated or circumvented by now.
Related to this, every ROM needs a "boot loader" that has to be signed and is verified by the lockout chip. Nintendo's boot code is under copyright and thus cannot be used. So the boot code distributed with Libdragon is signed by finding a hash collision with a brute force tool running on the GPU[1]. Fun stuff! [1] https://github.com/DragonMinded/libdragon/tree/trunk/boot#bu...
And on top of that, libdragon's IPL3 doesn't just blindly copy the first megabyte of ROM code into RDRAM like the official Nintendo one does, but actually expects the ROM data after it to be a full-blown ELF executable, which it parses out and copies pieces of to the specified places.
Pretty slick stuff.