Recompilation: An Incredible New Way to Keep N64 Games Alive

Ойындар

Introducing "static recompilation," a process that turns a ROM into a native port before you can say "Kooloo Limpah"
The MM Recomp: github.com/Mr-Wiseguy/Zelda64...
Wiseguy's official trailer: • Zelda 64: Recompiled f...
Dario's social feed: / dariosamo
Many thanks to Wiseguy and Dario for providing extensive tech explanations and footage
Support this channel on Patreon: / nerrel
Nerrel Discord: / discord

Пікірлер: 3 200

  • @MorbidlyObeseChihuahua
    @MorbidlyObeseChihuahua17 күн бұрын

    I love that N64 emulation has been so bad for so long that now were just skipping straight to making native ports of every N64 game instead. Amazing stuff.

  • @bt3743

    @bt3743

    17 күн бұрын

    Has it been bad? I mean outside of a few games having issues like factor 5's stuff, i dont think theres much of a problem with the old emulation methods if you just wanna play the games

  • @carvman217

    @carvman217

    17 күн бұрын

    @@feartheoldbloodit’s not emulation if it’s on the actual hardware…

  • @DrCaesarMD

    @DrCaesarMD

    17 күн бұрын

    ​@@bt3743 It generally works if "functions well enough to play" is your bar, which for many people it is, but n64 emulation is kinda notorious for just being less robust and polished than other systems emulations. Tinkering and customizing it is much more laborious and fraught with problems, The emulation is not the most accurate in the world, and it tends to struggle to run properly more than most other emulators. it usually functions fine, but if one has anything more than a fairly casual interest in game emulation, n64 emulation is definitely in the worst state among major system emulators from before the xbox360 era.

  • @DarkBowser64

    @DarkBowser64

    17 күн бұрын

    With simple64 you do tend to just get "it just works"-type results because it isn't plugin-based, and you can still raise the native rendering resolution. Since it's using Parallel graphics all graphical effects work as they would on N64. That said it's been bad for so long because of the HLE and plugin-based approach causing the actual cores of the emulators to be lacking because they'd just say it's a fault of the plugin instead. We've only recently really started making strides in proper accuracy and methods to make EVERYTHING work and not just specific popular games with hacky fixes to address specific problems instead of addressing the underlying issue directly.

  • @lpfan4491

    @lpfan4491

    17 күн бұрын

    @@DarkBowser64 Simple64 is genuinely the hero we needed because the plugin system sux. Like, it sucks so much that Dolphin abandoned it after the early stages, it is insane that the earlier N64 emus are still using them in 2024.

  • @punkitt
    @punkitt17 күн бұрын

    This is probably the craziest thing I've seen in the emulation scene in forever. That's wild.

  • @itzKeizo

    @itzKeizo

    17 күн бұрын

    This is not even emulation anymore This is creating the best way to play this games on modern hardware without an emulator Nintendo really is wasting a lot of potential by not hiring these guys

  • @MetrosexualGarbodor

    @MetrosexualGarbodor

    17 күн бұрын

    @@itzKeizo Nah, Nintendo would leave them to make some crap N64 emulator for the next console and then fire them. Let them be.

  • @StriderZessei

    @StriderZessei

    17 күн бұрын

    I was just gonna say, Nintendo needs to buy this and hire the makers to work on the games. ​@itzKeizo

  • @diodora2381

    @diodora2381

    17 күн бұрын

    @@itzKeizo Nintendo isn't interested in efficiency, they make more money from selling ports individually, they probably have the source code to their excellent archiving processes it seems, and they have some of the most talented developers in the world to work on that source code.

  • @poleve5409

    @poleve5409

    17 күн бұрын

    @@diodora2381 if they have the source code why do they emulate their n64 games? It’s 100% possible they lost the source code.

  • @BirchPlanks
    @BirchPlanks11 күн бұрын

    whoever made the recomp must have been some sort of wiseguy

  • @fluffycritter
    @fluffycritter16 күн бұрын

    Static recompilation is a technique that’s been around forever but never got very popular in emulation circles for some reason. I’m glad to see someone managing to make it visible! Not to mention all of the amazing work they’ve done on the graphical improvements, especially the drawcall interpolation stuff which is super cool. It’s also pretty much how Apple’s “Rosetta” works for running Intel applications on Silicon Macs and why that emulation is super efficient.

  • @ZipplyZane

    @ZipplyZane

    15 күн бұрын

    I've always wondered why it wasn't used more for running games on limited hardware. I assumed it was just really hard to do, and that JIT (just in time) recompilation was the best we could do.

  • @ru0nrunes297

    @ru0nrunes297

    14 күн бұрын

    The answer is generally that dynamic recompilation is easier to make, I don't doubt that the efforts of emulator developers and enthusiasts over the years documenting the N64 hardware and its quirks is related to why this could be made now. Even in the video, he mentions that part of why the MM port could be refined so quickly was because of the decompilation existing, nothing like the current understanding of N64 hardware existed back when PJ64 was made. Also, the graphics are effectively being handled the same way an emulator does, so it's weird to me that they keep claiming it's not emulation. It's more like half-recompilation/half-emulation.

  • @Reonu

    @Reonu

    13 күн бұрын

    @@ru0nrunes297 The graphics part isn't emulation in the same way that the graphics part isn't emulation in other PC ports (sm64pc, SoH, etc). It's using a translation layer for the graphics. It has to, there is no other way, unless you want to convert every single model and effect in the game to modern formats, but that's kind of pointless. Think of it like a native Linux game that uses DXVK to translate DirectX calls to Vulkan calls. Is that emulation? No, you're not emulating anything. DXVK is not an emulator. Same here, RT64 is not an emulator either. It's a renderer that uses a translation layer to interpret models and such in N64 format. The RT64 renderer CAN be used by an emulator, but here it's being used by a native PC game instead.

  • @SerBallister

    @SerBallister

    13 күн бұрын

    Static compilation may have some problems with decrunchers, code relocations and self-modifying code. I'm not sure if this is even a problem for N64 games. Dynamic recompilation is a good solution for the mentioned problems as they can sense when uncompiled code is about to be executed just-in-time.

  • @uauei183

    @uauei183

    13 күн бұрын

    what has always held back static recompilation is statically finding jump targets of indirect jumps and most importantly of virtual functions. and, also with self-modifying code.

  • @Bzehburger
    @Bzehburger17 күн бұрын

    I can't help but notice how some ray traced upscaled N64 games manage to perfectly recreate the aesthetic of their official renders and concept art. It's amazing.

  • @tentaculartaku4827

    @tentaculartaku4827

    17 күн бұрын

    Some of the ray traced shots look like they also have a texture pack to be fair

  • @zoscarrhoads7741

    @zoscarrhoads7741

    17 күн бұрын

    I've always looked for a visually improved experience with these titles, the texture packs looked a lot different from the original concept. This is what I was looking for.

  • @jadeaaron2003

    @jadeaaron2003

    17 күн бұрын

    I know right? It's sooooo cool

  • @WasatchWind

    @WasatchWind

    17 күн бұрын

    I can't wait to see if projects like render 98 pan out, I'd love to see those renders fully captured

  • @No_True_Scotsman

    @No_True_Scotsman

    17 күн бұрын

    More evidence that lighting is generally the most important thing in computer graphics

  • @Majuular
    @Majuular17 күн бұрын

    This seems like a pie-in-the-sky concept I would have come up with as an 11 year old with less than zero understanding of how programming works. But it's real. What an age we live in!

  • @MrDmoney156

    @MrDmoney156

    17 күн бұрын

    kid/teenager me would never believe it... maybe a little bit cuz i was way too native back then sadly lmao, it's so crazy that's it is an real actual thing nowadays!

  • @BreadLordDormammu

    @BreadLordDormammu

    17 күн бұрын

    Back to the Ultima mines with you!

  • @AMD_Fan_98

    @AMD_Fan_98

    17 күн бұрын

    Shit man with my autism, I've been thinking of a concept like this since I've gotten into emulation.

  • @2ndbleak

    @2ndbleak

    17 күн бұрын

    Just think of all the terrible N64 RPGs you can review now

  • @elladoros

    @elladoros

    17 күн бұрын

    ikr this is something i imagined in my head cant believe this is a thing now

  • @gotenks157
    @gotenks15714 күн бұрын

    I love how your voice tone changed only when dissing superman lol

  • @alexanderg1935

    @alexanderg1935

    14 күн бұрын

    It's a bot

  • @ScandalUK

    @ScandalUK

    14 күн бұрын

    Clearly an AI voice yep

  • @jamjon6616

    @jamjon6616

    13 күн бұрын

    @@ScandalUKyou’re so smart

  • @ScandalUK

    @ScandalUK

    13 күн бұрын

    @@jamjon6616 why thank you kind sir, I must've gotten outta bed the right side today cuz I even remembered to breathe. Which I'll quickly prevent you from doing should I get my way

  • @sunnysideup137

    @sunnysideup137

    12 күн бұрын

    @@ScandalUK local netizen discovers accents for the first time (colorized)

  • @GarrusVakarian-to2uh
    @GarrusVakarian-to2uh15 күн бұрын

    This is incredible. I've been beating Majora's Mask today near 4k at 360 frames per second and it runs so well, better than emulation or even the reverse engineered stuff. This programmer is a genius. Good job with the modern DirectX. This programmer Wiseguy is a genius.

  • @Spebby
    @Spebby17 күн бұрын

    The game preservation scene has never looked better.

  • @krux02

    @krux02

    17 күн бұрын

    amazing for some games, very bad for other games. Just look at the state of "The Crew". Not playable by anybody on any hardware, destroyed by the publisher.

  • @Spebby

    @Spebby

    17 күн бұрын

    @@krux02 Yes, that's not great. However, there is a fan initiative to patch that game for offline and host emulated servers. It's pretty inspiring. The ultimate solution would be some legislation to prohibit companies from destroying art like this, but that's a long ways off and likely will be EU specific.

  • @Neverknot47

    @Neverknot47

    17 күн бұрын

    What an odd thing to say when Nintendo has been killing emulators harder than ever as of last few months

  • @_xeere

    @_xeere

    17 күн бұрын

    …for N64 games.

  • @qu1253

    @qu1253

    17 күн бұрын

    You say that as if Nintendo hasn't been on a warpath against emulation the past few months. Switch emulation is dead, as is 3DS emulation.

  • @Geneolgia
    @Geneolgia17 күн бұрын

    There's something so surreal about these old N64 games having RTX, I usually prefer to play these classics with minimum modern graphics enhancements but the RTX visuals here are almost ethereal or dreamy, like how my mind as a kid saw them. It just looks right.

  • @MrLFJ7

    @MrLFJ7

    17 күн бұрын

    Buttery smooth

  • @trashtrash2169

    @trashtrash2169

    17 күн бұрын

    I usually hate how fan updates look, but that guy's an artist for sure.

  • @DarkBowser64

    @DarkBowser64

    17 күн бұрын

    The original 3D renders they used to use back in the day often used calculated lighting that looks very similar to RT, so I think that's why it just feels so fitting.

  • @exonymat1471

    @exonymat1471

    17 күн бұрын

    It's weird isn't it (in a good way). For me, I've noticed that RTX weirdly looks far better with low poly graphics than they do realistic graphics

  • @IanZWhite00

    @IanZWhite00

    17 күн бұрын

    It’s heartening to see how universal of an experience this appears to be. It feels like such a strange, arbitrary place to draw the line (you don’t like texture packs or increased resolution but enjoy rtx??), but somehow the realistic shadows and lighting bring startlingly accurate form to how these games looked in my childhood dreams. It’s like an imaginary friend come to life, and not only can everyone else see them, but they’re all just as close with that friend as you were

  • @Coconut-219
    @Coconut-21916 күн бұрын

    In laymen's terms: A regular decompile takes machine code and tries to translate & reverse-engineer back into readable interpreted code (that can then be edited and compiled back into machine code) , where as "recompile" if I'm understanding uses lots of tricks and patterns to translate machine code into different, new & more 'computer-readable' machine code (for instance using modern hardware-accelerated rendering available in openGL).

  • @RyanStorey1231

    @RyanStorey1231

    15 күн бұрын

    Thanks! I'm computer savvy and I have a huge interest in emulation, but I'm nowhere near smart enough to follow the techno jargon Nerrel is throwing at me here lol

  • @alexjeffrey3981

    @alexjeffrey3981

    15 күн бұрын

    Yeah a recompilation converts from one architecture (n64) to another (eg x86, Apple M1/M2). Sounds like in this case they decompile to unreadable C and then take advantage of C's stellar architecture support to recompile to the target, meaning supporting new platforms is much easier.

  • @miroaja1951

    @miroaja1951

    15 күн бұрын

    ​@@alexjeffrey3981 It isn't entirely automatic yet, and currently relies on some config and an ELF to get symbols (a disassembly can work apparently but a decomp would make the process easier)

  • @alexjeffrey3981

    @alexjeffrey3981

    15 күн бұрын

    @@miroaja1951 ah gotcha, thanks for the clarification! Still sounds like a massive step forward for porting nonetheless :)

  • @Daniel15au

    @Daniel15au

    13 күн бұрын

    Emulators already use recompilation to convert N64 code to code that can run on a computer, but at runtime. This is called dynamic recompilation. Because this is done in real time, it needs to be fast. Static recompilation means the work is done ahead of time instead, as part of a build process. Now that it's no longer happening in real time, it's okay for it to be slower and do more stuff.

  • @AnthonyLoPrimo
    @AnthonyLoPrimo13 күн бұрын

    I love the contrast between a well spoken voice over and then getting derailed when superman 64 comes up 😂

  • @jamesknapp64

    @jamesknapp64

    9 күн бұрын

    That was a great touch

  • @MishKoz
    @MishKoz17 күн бұрын

    Dude Wiseguy was big in the Mario 64 romhacking scene for a long time, then he kinda disappeared for a while. We had a stupid little joke of "damn he went to a farm upstate 😔" that eventually just turned into "Wiseguy Farm." So THIS is what he's been busy with! This is insanely cool. Thank you Wisrguy and Nerrel for bringing something as cool as this to fruition.

  • @splattwig

    @splattwig

    17 күн бұрын

    Wiseguy Farm was secretly a meth lab.

  • @2NDFLB

    @2NDFLB

    17 күн бұрын

    ​@@splattwig▪️ meth lab? ⬛

  • @DougSalad

    @DougSalad

    17 күн бұрын

    @@2NDFLB did you not watch the video? homie's been COOKING

  • @GlitchanBlack

    @GlitchanBlack

    16 күн бұрын

    @@splattwig Wiseguy is the new Heisenberg.

  • @TimmFN

    @TimmFN

    16 күн бұрын

    @@GlitchanBlack wisenberg

  • @WasatchWind
    @WasatchWind17 күн бұрын

    It's incredible how much the lighting makes Hyrule field seem so much more bright and alive.

  • @raven75257

    @raven75257

    17 күн бұрын

    Lighting is the most important part of 3D art. Good light setup can make an ugly game beautiful, and bad light setup can kill your entire scene

  • @inendlesspain4724

    @inendlesspain4724

    17 күн бұрын

    @@raven75257 Yup, just look at Sonic Adventure DX.

  • @Vingul

    @Vingul

    17 күн бұрын

    @@raven75257 Lightning =/= Lighting

  • @raven75257

    @raven75257

    17 күн бұрын

    @@Vingul Thanks for the correction

  • @islandboy9381

    @islandboy9381

    15 күн бұрын

    @@Vingul Lightning returns

  • @MegaDrainProductions
    @MegaDrainProductions12 күн бұрын

    Mr Wiseguy should make limited announcements. The more announcements he makes and traction this gets, the sooner it'll be for Nintendo to cease and desist him.

  • @pootispencerhirtf2

    @pootispencerhirtf2

    11 күн бұрын

    Agreed. Remember AM2R? Remember Link's Awakening DX HD? Super Mario 64 PC Port? Pokemon Uranium? It's a miracle Shitendo hasn't come after the folks at Ship of Harkinian.

  • @MegaDrainProductions

    @MegaDrainProductions

    11 күн бұрын

    @@pootispencerhirtf2 Even more recently with Portal 64, which is so incredibly petty.

  • @someperson4536

    @someperson4536

    9 күн бұрын

    ​@@MegaDrainProductions didn't valve suggest taking it down?

  • @kekcrocgod6731

    @kekcrocgod6731

    6 күн бұрын

    The recompiler doesn’t actually include the game assets and requires you to use your own (presumably legally dumped) roms, so I don’t understand why it’d get taken down. 99% of fan projects don’t get taken down, and a majority of the ones that do get cease and desisted because the devs tried to monetize them and profit off of it

  • @MarioGoatse

    @MarioGoatse

    4 күн бұрын

    He’s not actually distributing the game itself though. You need to bring the ROM file yourself. Nintendo won't do anything, because every single person here only dumps legal ROMs. Right guys?

  • @beardalaxy
    @beardalaxy16 күн бұрын

    Man, Nerrel really made this sound easier than it is. You can't just import an N64 game into a program and set some values with a GUI to make it work. It's a lot more complicated.

  • @youraverageyoutubeviewer

    @youraverageyoutubeviewer

    15 күн бұрын

    Did you figure it out? I’ve been wanting to recompile Paper Mario 64 but after I build the Recomp tool I have no idea what to do next.

  • @miroaja1951

    @miroaja1951

    15 күн бұрын

    ​@@youraverageyoutubeviewerYou do need to provide symbols in an ELF, so you do need to do *some* disassembly or decomp for this to work. This project is mostly an amazing tool to port games, but it isn't automatic decompilation or anything (so no cool decomp mods). Haven't tried it but you should be able to disassemble your game with ghidra and provide some symbols for the tool to run. Just google things till it works

  • @beardalaxy

    @beardalaxy

    14 күн бұрын

    @@youraverageyoutubeviewer not really. from the looks of it, it's pretty complicated and wiseguy intends on making it easier for people who aren't developers soon (tm). as it stands, you need to find some way to get an ELF file from a decomp in order to pass metadata to recomp, but nobody seems to know what that ELF file is supposed to be other than wiseguy himself and there's no documentation on it. that's what it seems like, at least. i can't find an ELF in the star fox decomp repo so i assume it is another thing you have to somehow compile with a different tool.

  • @FunctionallyLiteratePerson

    @FunctionallyLiteratePerson

    14 күн бұрын

    ​​@@beardalaxyELF files are executable linkable files that store the libraries needed. I can't confirm if it works, but try searching the following on Google, it's a script for linux that requires MIPS I believe: "JayFoxRox" "elf" "n64"

  • @acabusarmies7279

    @acabusarmies7279

    14 күн бұрын

    @@beardalaxy I found one in the paper mario decomp. Now I've gotta wait for the ability to log back into my github account to ask for the Cic address that starts the game data

  • @SuperWiiBros08
    @SuperWiiBros0817 күн бұрын

    I fucking love the dedication of these Nintendo fans keeping preservation as alive as possible

  • @dgan2304

    @dgan2304

    16 күн бұрын

    I'm terrified Nintendo will come and Nintendo it.

  • @_Tzer

    @_Tzer

    16 күн бұрын

    @@dgan2304 nintendo trying not to hate its fan's dedication and noit be jealous challenge impossible

  • @user-md7er6xe2z

    @user-md7er6xe2z

    16 күн бұрын

    @@dgan2304 Yeah Hopefully Nintendo does not come and Nintendo all over it. That would be bad.

  • @blacksunshine7485

    @blacksunshine7485

    16 күн бұрын

    Fucking.

  • @ThylineTheGay

    @ThylineTheGay

    16 күн бұрын

    @@user-md7er6xe2z i really hated that moment in the movie D:

  • @jammy2897
    @jammy289717 күн бұрын

    Can we mention how absolutely BEAUTIFUL Kirby 64 looked in that short clip

  • @Hysteria98

    @Hysteria98

    17 күн бұрын

    That made me moist more than anything else

  • @SillyVaporeon

    @SillyVaporeon

    17 күн бұрын

    I know, right?

  • @megamillion5852

    @megamillion5852

    17 күн бұрын

    I was in complete denial, for just a moment, that it even was Kirby 64.

  • @GlitchanBlack

    @GlitchanBlack

    16 күн бұрын

    4:19 for the short Kirby 64 Retraced footage, in case anyone is curious.

  • @GBDupree

    @GBDupree

    16 күн бұрын

    I was impressed when I saw the shadows on the house in Paper Mario, but then the Kirby 64 clip played and my Jaw dropped. That game's artstyle works perfectly for it. I want to see more!

  • @MeBloxboy305
    @MeBloxboy30516 күн бұрын

    Thumbnail work is insane, props to whoever worked on it

  • @snickothemule
    @snickothemule15 күн бұрын

    This is staggering! Not only is it recreating the game practically perfectly, keeping the audio sharp and latency low, the enhancements are breathing new life into these legendary games. The dudes working on this project have achieved something incredibly special. I loved the n64 as a kid, still do and look forward to experiencing this all again.

  • @hotcocoabomb_
    @hotcocoabomb_17 күн бұрын

    The best result for this is if it somehow leads to a Superman 64 modding scene

  • @ribbrana

    @ribbrana

    17 күн бұрын

    Superman 64 becomes the best Superman game decades later. the good ending.

  • @tulio829

    @tulio829

    17 күн бұрын

    The real challenge. Make sup64 not suck

  • @_Tzer

    @_Tzer

    16 күн бұрын

    @@tulio829 the superman 64 beta would be a good place to look cuz surprisingly its a better game. no ring levels too.

  • @SigmaMan1448

    @SigmaMan1448

    16 күн бұрын

    Dude, imagine if it became a masterpiece through modding lmao

  • @hotcocoabomb_

    @hotcocoabomb_

    15 күн бұрын

    @@SigmaMan1448 atp id settle for a 5/10 lol

  • @420malbania4
    @420malbania417 күн бұрын

    I appreciate that Nerrel's body still supports ultra-wide all these years later. The devs care.

  • @islandboy9381

    @islandboy9381

    15 күн бұрын

    There are dozens of us DOZENS

  • @bigginsmcsauce
    @bigginsmcsauce15 күн бұрын

    A version of Goldeneye 64 that runs smoothly, has a modern control scheme, and multiplayer would be an absolute dream come true!

  • @simeonellinger2064

    @simeonellinger2064

    3 күн бұрын

    I'd rather see perfect dark. That game pushed the N64 beyond it's limits into a stuttering, laggy mess often. Though I realize at least perfect dark has a decent remake, I would still love to see it get this kind of treatment.

  • @Mari_Izu

    @Mari_Izu

    2 күн бұрын

    ​@@simeonellinger2064 Perfect Dark 64 already has a PC port with online play.

  • @gilbezoulrattenkonig7219

    @gilbezoulrattenkonig7219

    2 күн бұрын

    check - 1964 GEPD - , goldeneye & Perfect Dark on keyboard mouse ! work like a charme

  • @pineapplequeen13
    @pineapplequeen132 күн бұрын

    This could result in SUCH a huge step towards preserving more games! The historical value of this project is immense, imo. I'll definitely be following the progress on this now!

  • @garsifeld4510
    @garsifeld451017 күн бұрын

    Being able to nativley port n64 games is actually ground breaking for emulation, I really hope software like this can be adapted for all systems notably for games that have never received ports for modern systems.

  • @chuviis3508

    @chuviis3508

    17 күн бұрын

    Exactly.i really hope they manage to expand this beyond N64 since these gives new heights for preserving games

  • @bt3743

    @bt3743

    17 күн бұрын

    Is it really emulation if its a native port

  • @infectedanimal9830

    @infectedanimal9830

    17 күн бұрын

    Exactly what I wad thinking, would be awesome to finally try bloodborne out on pc

  • @dan3817

    @dan3817

    17 күн бұрын

    Thing is, all this was only possible due to countless hours reverse engineering a single game's engine (an engine which by today's standards is very archaic) Reverse engineering is a painstakingly slow thing to do specially the more complex the software is, so it's not something that can be done at a mass scale, only focused passion projects

  • @dan3817

    @dan3817

    17 күн бұрын

    ​​@@infectedanimal9830Tbh I'd say it's infinitely more feasible for PS4 emulation to become a mature thing before a reverse engineering of that game is achieved (the game is just too big to feasibly fully reverse engineer) It's in theory already possible to mod PS4 games, specially since they're essentially PC games running on a modified FreeBSD OS

  • @AceLeader101
    @AceLeader10117 күн бұрын

    This honestly puts just about every "oot in Unreal" project to shame. I'm excited for what's to come

  • @UltimaKeyMaster

    @UltimaKeyMaster

    15 күн бұрын

    That's exactly what I was thinking.

  • @viewtifuljacob

    @viewtifuljacob

    15 күн бұрын

    Man, those videos are awful. Oversaturation and bloom with a wobbly camera. It's the equivalent of the ultra realism GTA with puddles and wet road reflection trend.

  • @brunop.8745

    @brunop.8745

    15 күн бұрын

    this is what happens when nintendo DOESN'T hire that man

  • @inakilukac

    @inakilukac

    14 күн бұрын

    Nintendo should unironically NEVER "hire this man". They'd make them do a terrible job

  • @Alexander-ix2jp

    @Alexander-ix2jp

    14 күн бұрын

    Oot in Unreal 5 remake here on KZread looks gorgeous.

  • @JibbSmartGD
    @JibbSmartGD15 күн бұрын

    What an incredible project! Thanks for the great break-down, Nerrel!

  • @AwesomeGames56
    @AwesomeGames5615 күн бұрын

    I’m stoked to see all of this come out, I’ll be following this project to see where it goes.

  • @GamerOverThere
    @GamerOverThere17 күн бұрын

    Holy crap Wiseguy is a wise guy

  • @MixAndMash

    @MixAndMash

    17 күн бұрын

    Freakin sweet Lois

  • @clamdove3292

    @clamdove3292

    17 күн бұрын

    oh hey our pfps match

  • @coreyander286

    @coreyander286

    17 күн бұрын

    Do not confuse technical ingenuity with wisdom. It was very foolish of Wiseguy to create this. This could be the end of human civilization. Such hubris.

  • @GamerOverThere

    @GamerOverThere

    17 күн бұрын

    @@clamdove3292 call us the strolling bros

  • @inendlesspain4724

    @inendlesspain4724

    17 күн бұрын

    "カレーは華麗" aah comment.

  • @GavinKn
    @GavinKn16 күн бұрын

    8:43 the lighting looks so good in this room

  • @crowlsyong

    @crowlsyong

    14 күн бұрын

    Ya wow

  • @Osai1234

    @Osai1234

    14 күн бұрын

    Never thought I'd see purple-bluish hue and shadows inside of the water temple. That's actually refreshing and cool

  • @animationai9109

    @animationai9109

    12 күн бұрын

    It’s crazy how good everything looks

  • @yourfriendlyneighborhoodbe5996
    @yourfriendlyneighborhoodbe599615 күн бұрын

    This literally brings me so much joy. I love MM and I'm so ready to jump back into this game.

  • @Jabbernut-games
    @Jabbernut-games13 күн бұрын

    Hope we get to see Nerrel’s texture pack in the recomp soon. Playing in 60 fps beats the heck out of the original, but I like the enhanced textures

  • @trolatrolatrola
    @trolatrolatrola17 күн бұрын

    I had my jaw dropped throughout the whole video. Majoras Mask port with 60fps, widescreen, ray tracing, and many more games coming. I'm salivating.

  • @stardustsdd

    @stardustsdd

    17 күн бұрын

    "I'm salivating" is the perfect way to describe our reaction

  • @jeffboy4231

    @jeffboy4231

    17 күн бұрын

    In a few months there's gonna be a humongous amount of ports. Hoping for such programs to come to other consoles like PlayStation and such

  • @Xbob42

    @Xbob42

    17 күн бұрын

    Just played it at 120 FPS, looks so good, feels perfect. But it still doesn't have freecam on the right stick so I'mma wait, haha.

  • @eletgres519

    @eletgres519

    17 күн бұрын

    superman 64 gets the proper treatment it deserves

  • @Professor_Utonium_

    @Professor_Utonium_

    17 күн бұрын

    Widescreen destroys any sense of framing of area layouts in the game, these titles were never intended to be played in anything but 4:3 aspect ratio.

  • @sw4a
    @sw4a17 күн бұрын

    FYI the recomp will support texture packs later down the road, so you can definitely play this with Nerrel's texture pack in the not so near future

  • @moxieswaygan

    @moxieswaygan

    16 күн бұрын

    thats all i want

  • @user-md7er6xe2z

    @user-md7er6xe2z

    16 күн бұрын

    That sounds awesome. Hopefully this progress will continue into the future.

  • @user-gn4ci9et6d

    @user-gn4ci9et6d

    16 күн бұрын

    I have been sitting on this channel for years waiting to hear these words

  • @williamvarner7948

    @williamvarner7948

    14 күн бұрын

    I was wondering how to get the retexture pack Nerrel is using, running on my end. Pretty sure my potato laptop could run it

  • @danriley282
    @danriley28215 күн бұрын

    I love your channel, Nerrel! Thanks for doing what you do! :D

  • @octorokreviews
    @octorokreviews11 күн бұрын

    This is fantastic. I've been having so much trouble recording footage for my Ocarina of Time Review due to how terrible Project N64 is (it kept crashing right before the shadow temple, and I lost hours of progress), so it'd be great to use something more stable in the future.

  • @gerboog

    @gerboog

    8 күн бұрын

    Wht didn't you just play Ship of Harkinian then?

  • @thederpysage
    @thederpysage17 күн бұрын

    "like my body" gets me every time

  • @nullset2

    @nullset2

    17 күн бұрын

    Fat nerrel is a new piece of lore for me.

  • @coreyander286

    @coreyander286

    17 күн бұрын

    @@nullset2 I don't want him to be fat, I've always pictured him as an Adonis-like twink, wearing a Yoko Taro style mask but instead of Emil it's the Moon from Majora's Mask with Sy Snootles's face

  • @BBWahoo

    @BBWahoo

    17 күн бұрын

    ​@@coreyander286Sounds cringe, make him a fat samson bastard like Wario or Weinstein wearing a giant tingle costume as his ballsack produtes proudly.

  • @umageddon

    @umageddon

    17 күн бұрын

    Have you watched this multiple times already or does he say this in every viideo?

  • @nisnast

    @nisnast

    17 күн бұрын

    ​@@umageddonhe said it before in his video talking about advancements done by multiple emulators

  • @sapphirebulletbill
    @sapphirebulletbill17 күн бұрын

    I'm going to say this once: Diddy Kong Racing with Online Multiplayer

  • @chaoslord8918

    @chaoslord8918

    17 күн бұрын

    Two words (though it's actually typed as one word): JointVenture

  • @RAFMnBgaming

    @RAFMnBgaming

    17 күн бұрын

    that definitely seems like a thing you'd need a proper decomp/port for.

  • @vRyanXOXO

    @vRyanXOXO

    17 күн бұрын

    me when retroarch netplay:

  • @beardalaxy

    @beardalaxy

    16 күн бұрын

    there are already several ways to play N64 games online with your buddies. definitely not anything like the super mario 64 online tool though, and that is something that would require decompilation.

  • @leedolian4482

    @leedolian4482

    16 күн бұрын

    Say it once and never again. That game sucked dick

  • @NIGHT-GAURD
    @NIGHT-GAURD12 күн бұрын

    Majoras mask looks a bit buggy but looks amazing

  • @mymusicaljesus
    @mymusicaljesus15 күн бұрын

    NGL...even the Superman audio sounded absolutely incredible at the end of this video. Like, the voice was so warm and had a really smoothe low end while still sounding dynamic, which is WILD for Superman 64!

  • @JJAB91
    @JJAB9117 күн бұрын

    3:21 Rocket: Robot on Wheels was actually the first game made by Sucker Punch, the same studio that later made Sly Cooper, Infamous, and Ghost of Tsushima. I had it as a kid, its a very fun 3D platformer.

  • @megamillion5852

    @megamillion5852

    17 күн бұрын

    I'm still eagerly waiting on that Sly decomp. The first game was always my favorite.

  • @lradmclovin9

    @lradmclovin9

    16 күн бұрын

    Iirc it’s also the first physics-based 3D platformer

  • @BunnLilah

    @BunnLilah

    15 күн бұрын

    The music is awesome too. Really jazzy and off-beat which I imagine is hard to pull off with MIDI or the MIDI-like music the 64 uses. Very underrated game.

  • @Ro-qp8rb
    @Ro-qp8rb17 күн бұрын

    *slaps N64 automatic recompiler* "This programme can run so many [redacted] games natively on PC"

  • @stardustsdd

    @stardustsdd

    17 күн бұрын

    Throwback meme

  • @jeffreystoner5131
    @jeffreystoner513121 сағат бұрын

    One of the best thumbnails I've ever seen.

  • @skettismyname
    @skettismyname14 күн бұрын

    Just wanted to pop in and say thank you. I'm going through such a nostalgia trip right now. I cannot wait for Ocarina. Or other games, like Kirby, Mario, Mario Party and Kart?? Ugh I'm so hype

  • @atrocewins
    @atrocewins17 күн бұрын

    Stunningly awesome. The fact that it is not limited to Windows is even more amazing. This is really a new age for retro games. I hope to see this for PS1 one day.

  • @serraramayfield9230

    @serraramayfield9230

    16 күн бұрын

    or PS2

  • @UltimaKeyMaster

    @UltimaKeyMaster

    15 күн бұрын

    At the moment, Duckstation is in a very good state for regular PS1 emulation. That'll tide you over until we get something this magical for it.

  • @PurpleLPikmin
    @PurpleLPikmin17 күн бұрын

    This is one of the coolest potential solutions to the N64's notoriously rough emulation scene I've ever seen. Nothing against the efforts of decompilations & making emulators better, both are still very important and have been so for years, but a tool which could bypass emulation entirely without years of manual effort on a game by game basis is truly special.

  • @stuartcarter4139

    @stuartcarter4139

    15 күн бұрын

    Years of manual effort to automate the manual effort is the key to the future hahaha

  • @Tenshiyo
    @Tenshiyo14 күн бұрын

    This is truly incredible, I never thought I'd ever play my favorite game in what is essentially HD. I have just two very significant (and possibly very stupid) questions. 1) How long until we can inject your astounding texture packs into this program to create true HD? and 2) How long until we can inject Randomizer roms into this program?

  • @TheNezperdian
    @TheNezperdian11 күн бұрын

    First time I ever heard of this. Thanks for covering it!

  • @tombcruisin
    @tombcruisin17 күн бұрын

    perfect example of work smarter, not harder Wait, THAT'S what the laundry pool screenshot on twitter was??

  • @Joskilani
    @Joskilani17 күн бұрын

    Getting flashbanged with Rocket Robot on Wheels on PC was insane

  • @TheKeybladeKeeper

    @TheKeybladeKeeper

    16 күн бұрын

    Same I thought I was one of about 15 people to play the game

  • @Duffy_SSBM
    @Duffy_SSBM16 күн бұрын

    This is unbelievably incredible. Fan community work like this is so inspiring

  • @TheMatthew
    @TheMatthew10 күн бұрын

    Absolutely stunned with how much N64 progress the last few years has brought! I thought Nerrel's pack was the best MM could ever get, now look at us! I'm also beyond hyped that you're making textures for the OoT exclusive items, because now I'll finally have the full Nerrel icon pack for both Zeldas!

  • @Vospi
    @Vospi17 күн бұрын

    1) This is mindblowing. The developers are heroes. 2) Please tell me this is at least possible for PS1, my youth love...

  • @nonameyethangonaminute

    @nonameyethangonaminute

    17 күн бұрын

    In theory, any console game can be decompiled and ported like this. *In theory.*

  • @matheusrios4223

    @matheusrios4223

    17 күн бұрын

    Yes, it is indeed possible. Idk if there is any project for it atm tho

  • @jaykelley103

    @jaykelley103

    17 күн бұрын

    Duckstation is so good that a project like this for ps1 isnt as in demand, but maybe someone will just do it anyway. Would be based

  • @64bitmodels66

    @64bitmodels66

    17 күн бұрын

    @@jaykelley103 Duckstation still can't completely remove the shimmer and warping of textures that PS1 has, and not all games have proper 60fps or widescreen support.

  • @jaykelley103

    @jaykelley103

    17 күн бұрын

    @@64bitmodels66 I know. But playing games on it isnt miserable like with n64 emus. (((I personally like the texture warp. Is part of ps1 identity)))

  • @TrevorAvrett
    @TrevorAvrett17 күн бұрын

    Proper decompilation will be tremendously helpful for faithful fan remasterings of games, which is something I believe just about everybody wants

  • @balsalmalberto8086

    @balsalmalberto8086

    13 күн бұрын

    If only Nintendo would cease and desist being pricks to their fans and community.

  • @TehJellyLord
    @TehJellyLord16 күн бұрын

    This is such an awesome thing. I am always amazed by fan works like this. A universal translator of N64 games to native windows executables must have been an insurmountable task for the devs and it is incredible they’re ere able to achieve this.

  • @clonblurmin8194
    @clonblurmin819413 күн бұрын

    This is crazy stuff. I hope we see a bunch of cool projects come out of this

  • @nomorenames
    @nomorenames17 күн бұрын

    Actually insane what talented developers can come up with

  • @enorma29

    @enorma29

    17 күн бұрын

    as a labour of love!!!!! this is proof against the millenia-long argument that only a salary can incentivize work. this is humanity evolving out of monetaryism and it's beautiful.

  • @toxeia

    @toxeia

    17 күн бұрын

    ​@@enorma29 but dude still needs to eat.

  • @megamillion5852

    @megamillion5852

    17 күн бұрын

    ​​@@enorma29 Glad to see someone else gets it. People will do things out of intrigue, curiosity, and sheer fvcking will. And they'll be able to do so much more than a company's mandates and deadlines will ever allow.

  • @protocetid

    @protocetid

    16 күн бұрын

    Isn’t Dolphin fairly accurate in terms of emulation? Emulation doesn’t compare to this but Dolphin does put N64 emulators to shame. As for balance tweaks and new characters, Melee players are fiercely protective of the game’s meta. There’s one major mod that adds a few characters and leaves the old characters unchanged, it’s not played in tournaments because the Melee player base is rather purist. If you want a rebalanced Melee cast with plenty of new characters check out Project+, it turns Brawl into the true Melee sequel it should’ve been.

  • @CrAzYpotpie

    @CrAzYpotpie

    15 күн бұрын

    ​@@megamillion5852but dude still needs to eat.

  • @thebestworst8002
    @thebestworst800217 күн бұрын

    The ocarina of time and majora’s mask with real time lighting looks like an official HD remake made for the switch

  • @Zed_Oud
    @Zed_Oud4 күн бұрын

    This will be amazing for making VR adaptations.

  • @qu1253
    @qu125315 күн бұрын

    Not gonna lie, I'm kind of upset that Superman 64 of all bloody things got a PC port before Star Fox 64.

  • @superbro6413
    @superbro641317 күн бұрын

    The project covered here is the coolest thing, but let me say, that thumbnail goes hard. Nerrel must of been an Nintendo Power magazine cover artist in a past life or something lol It looks really good, that's it

  • @user-nw6xh7mn3h
    @user-nw6xh7mn3h17 күн бұрын

    I never imagined that people would solve the problem of the N64 being so hard to emulate via bypassing the need to emulate in the first place. This is a truly amazing development.

  • @tinoesroho

    @tinoesroho

    15 күн бұрын

    ✋ emulation 👉 direct API translation

  • @tinoesroho

    @tinoesroho

    15 күн бұрын

    pretty sure 'static recompilation' is how xbox's backwards compatibility works on the xbox one/series family specifically, and it's why every 360 game weighs like 18gb on the One

  • @Willowposting
    @Willowposting16 күн бұрын

    This is so amazing. I can’t wait to play with this later when I get home. Things like autosave might finally make Majora playable for me.

  • @TheMrZ100
    @TheMrZ10015 күн бұрын

    Man I can't wait for Rogue Squadron to get this treatment!

  • @theGstar305

    @theGstar305

    8 күн бұрын

    Rogue Squadron already has a PC port you can buy on Steam. And it actually works fairly decently even to this day

  • @TheMrZ100

    @TheMrZ100

    8 күн бұрын

    @@theGstar305 Yes and I own it, trying to get a controller working well with it is a nightmare, its honestly was easier to just emulate it lol

  • @owenl7598
    @owenl759817 күн бұрын

    The ZeldaRET team whose Majora's Mask decomp just hit 94% and has been a labor of love for 3 years: fuck

  • @APEXGuerilla

    @APEXGuerilla

    17 күн бұрын

    F

  • @fewef32f

    @fewef32f

    17 күн бұрын

    1) The ZRET team wasn't making PC Ports themselves anyway. That was Ship of Harkinian. Also another group made a separate PC port, but they had skeletons in their closet so we don't talk about them. At most, ZRET suggested if people were going to make PC Ports from their work, wait until the code's properly documented. Which this Wise Guy's project doesn't need to account for, and all the other PC Ports are just ignoring anyway because 2 1/2 years later, ZRET's still not given an update on if documentation is done or not. 2) The MM decomp is still immensely useful for mods. The Majora's modding scene wasn't really a thing until the decomp anyway. Wise Guy's project can't make rom hacks alone. Plus there's the overall idea that the more source code about games we can replicate in general, the more knowledge we have about some of the most notorious games in history. That will always be useful.

  • @owenl7598

    @owenl7598

    17 күн бұрын

    @@fewef32f it's only a joke buddy the more documentation and preservation of videogames we have the better

  • @imhaddanitattaxx4172

    @imhaddanitattaxx4172

    17 күн бұрын

    @@fewef32f skeletons in their closet? I tried looking as I saw someone else say the same thing but couldn't find anything. Could you elaborate?

  • @link4585

    @link4585

    17 күн бұрын

    ​@@imhaddanitattaxx4172 I want to know too

  • @Anthony-mt3sn
    @Anthony-mt3sn17 күн бұрын

    Wow! Very informative and interesting! Another great video nerrel 👍 also, the vomiting tingle Superman at the end was just revolting! Another disgusting and horrifying image that’s sure to haunt me, nerrel! ❤

  • @Nerrel

    @Nerrel

    17 күн бұрын

    Not sorry

  • @coreyander286

    @coreyander286

    17 күн бұрын

    In the first edition of the video the vomitus was red, but it was changed to green after being deemed too heavy for an E-rated video.

  • @palmleafcooking
    @palmleafcooking15 күн бұрын

    these kinds of efforts are great examples of how impressive modern technology can be

  • @holyflutterofgod
    @holyflutterofgod17 күн бұрын

    I am so happy Nerrel could be the bearer of Best News. This seriously sounds like a dream; it just works??

  • @MoonSarito
    @MoonSarito17 күн бұрын

    One thing I love about these recompilation projects is that not only does it give you the freedom to run the game as best as possible on PC, but it also gives people the opportunity to port the games to whatever platforms they want. It was incredible to be able to play Ocarina of Time on Wii U in Widescreen at 60fps, seeing the original Super Mario 64 running on a DSi was incredible, not to mention other projects like Sonic Mania that finally got a version for 3DS (which was going to be released but was canceled) and people are porting it to the Dreamcast, or OpenLara/Tomb Raider which runs on basically everything like the Sega 32x or GBA, there's even a port for a super unknown console called Zeebo, we even have a port of Street Fighter 2 for the Virtual Boy and I don't even need to talk about Doom then. This is simply incredible and ends up giving other old or forgotten consoles a chance to shine too.

  • @mymusicaljesus

    @mymusicaljesus

    15 күн бұрын

    Someone(s) made a port of SF2 for the Virtual Boy?! That's awesome. I appreciate this as a Virtual Boy apologist. I know that they were able to get Virtual Boy games to run on a modded 3DS with the whole 3D depth perception trick working, but do you happen to know if this SF2 port will also work on the 3DS?? I've been meaning to aquire one of the New 3DS handhelds for awhile now and should probably get around to actually buying one sooner than later.

  • @themoocow7718

    @themoocow7718

    15 күн бұрын

    @@mymusicaljesus since the shop closed down, you can homebrew it to do pretty much anything. the VB emulator is Red Viper, and it's pretty fun.

  • @RobbieGuitar66

    @RobbieGuitar66

    15 күн бұрын

    I hope so much for Wii ports of N64 games. The emulators on it give so much trouble with certain games.

  • @XxFunkMachinexX

    @XxFunkMachinexX

    15 күн бұрын

    Dude I'm getting this today if possible. My love for Nintendo games is only tempered by their horrible cease and desist practices

  • @booschman
    @booschman6 күн бұрын

    Holy shit, this is amazing!! I'm excited for my next replay

  • @Cyranek
    @Cyranek12 күн бұрын

    wiseguy living up to the name

  • @user-md7er6xe2z
    @user-md7er6xe2z17 күн бұрын

    Its crazy how far we have come to understanding how N64 games work. Now we can effectively run these games natively on PC which will help massively with enhancing these games. Hopefully one day we will have this for more newer systems like the Game Cube.

  • @platyhelminthes2877

    @platyhelminthes2877

    17 күн бұрын

    I love seeing people dig into the code of these classic games and systems. It's like peeking inside the mind of the developers who made them all those years ago.

  • @user-md7er6xe2z

    @user-md7er6xe2z

    17 күн бұрын

    ​@@platyhelminthes2877 I agree, Especially when people make videos using the findings of digging into the code to explain how these games work on a technical level to a large audience. It highlights the intellect of the developers who made the game and gives us a greater appreciation of their work.

  • @megamillion5852

    @megamillion5852

    17 күн бұрын

    I desperately need a decomped/recomped Smash Bros. Melee with eventual moveset tweaks, expanded control options, and rebalanced characters.

  • @ChromeGonzalez
    @ChromeGonzalez17 күн бұрын

    BABE WAKE UP NEW NERREL VID JUST DROPPED

  • @shatteredakuma

    @shatteredakuma

    17 күн бұрын

    My reaction every single time I see the notification

  • @keithflippers4429

    @keithflippers4429

    17 күн бұрын

    Who are you and how'd you get in my house!?

  • @quatreraberbawinner2628

    @quatreraberbawinner2628

    17 күн бұрын

    I love nerrel he's so dreamy

  • @phantomdaroomphie9673

    @phantomdaroomphie9673

    17 күн бұрын

    Oh fuck, I'm up babe, I'm up 😲

  • @travismarshall3089
    @travismarshall308916 күн бұрын

    I feel like this is near exactly what Nightdive Studios has been doing for their remasters. Take a ROM and run it through a proprietary conversion program and modify from there and call it the "KEX Engine". I know that was their method of DOOM 64 EX from back in the day!

  • @kyoopihd
    @kyoopihd14 күн бұрын

    Thanks for bringing more attention to this!

  • @ArcadeTheatre
    @ArcadeTheatre17 күн бұрын

    Wiseguy came out of nowhere with MM PC on a silver platter for us.

  • @8strate8
    @8strate816 күн бұрын

    MYSTICAL NINJA. SPACE STATION SILICON VALLEY. SNOWBOARD KIDS. ALL 90FPS NATIVE ON THE STEAM DECK?? INSANE.

  • @cybertruckeralpha

    @cybertruckeralpha

    16 күн бұрын

    Mystical Ninja is especially exciting. The final boss was known to slow an emulator down to a crawl.

  • @atomixfang
    @atomixfang3 күн бұрын

    The games look just like how they looked back when I was 9 years old. Damn, I really felt the nostalgia flowing while watching these videos.

  • @hizzousekakashi8836
    @hizzousekakashi883612 күн бұрын

    Love that this was the first game and can't wait to see the old line up running like new!

  • @jcags
    @jcags17 күн бұрын

    You're right in considering Superman 64 an affront, but hear me out, projects like this could be used to fix the game and even make it an open world Superman game. The possibilities are endless. Also games like WWF No Mercy, holy fuck!

  • @islandboy9381

    @islandboy9381

    15 күн бұрын

    you'd need decompile to be able to do more for actually fixing the game on a fundamental level

  • @ScandalUK

    @ScandalUK

    14 күн бұрын

    Yeah... no

  • @wonko-the-often-sane

    @wonko-the-often-sane

    14 күн бұрын

    That would be a great promotional prize for the scene, like the Ansari X prize did for commercial spaceflight. Offer like 10 thousand dollars for the first devs to make Superman64 a bearable game. The challenge alone would mean a legendary payoff.

  • @PauLtus_B

    @PauLtus_B

    12 күн бұрын

    It'd be less effort to build something like that from scratch.

  • @wonko-the-often-sane

    @wonko-the-often-sane

    12 күн бұрын

    @@PauLtus_B No doubt, but wouldn't it be a fun series to follow?

  • @LastGreatDen
    @LastGreatDen17 күн бұрын

    4:10 is approaching higher "Hire This Man" energy than previously though possible outside of Unreal

  • @SethizFTW
    @SethizFTW12 күн бұрын

    I am very much looking forward to raytracing. Nerrel's texture pack and raytracing is a dream I didn't know I wanted.

  • @SigmaMan1448
    @SigmaMan144816 күн бұрын

    This is beautiful, some emotions are running through me right now, it is hard to describe, but it is good. It is hopeful. I love this.

  • @SigmaMan1448

    @SigmaMan1448

    16 күн бұрын

    It is also in C

  • @WarlockX4
    @WarlockX417 күн бұрын

    Love Nerrels videos. His dry sense of humor is perfection.

  • @dobbersanchez1185

    @dobbersanchez1185

    17 күн бұрын

    Are you being sarcastic?

  • @Dairunt1

    @Dairunt1

    17 күн бұрын

    This guy sounds like he just got home from 8 hours of customer support and I love it.

  • @platyhelminthes2877
    @platyhelminthes287717 күн бұрын

    This is a great time for everyone - those of us who are just discovering N64, those of us who have been playing since the 90s, and everyone in between.

  • @udance4ever

    @udance4ever

    15 күн бұрын

    yes! it was one thing to rediscover the game cube (like I did this past year) and it'll be a whole other level to revisit when a process like this comes to other platforms! N64 titles never got a lot of love until I discovered the remasters & i can tell this ain't Kansas anymore from this video - exciting times indeed!

  • @number1dstapp
    @number1dstapp12 күн бұрын

    this is why i say n64 was ahead of its time, just the hardware was not ready to bring it to the level we wanted it to be, and its just around the corner!

  • @_nRool
    @_nRool13 күн бұрын

    That split second of Goemon was all I needed, so excited.

  • @Electrosa
    @Electrosa17 күн бұрын

    Your Majora's Mask HD texture pack has long been a massive inspiration of mine, and I've been tenuously tossing up the idea of doing a retexture pack for Kirby 64 thanks to you. This breakthrough sounds like a huge step forward in making that entire process easier, without even mentioning the massive strides it takes in every other area!

  • @scrustle
    @scrustle17 күн бұрын

    I only found out a few days ago how close the Ship of Harkinian port for MM was to completion and was really impressed, and now it turns out this port already exists as well? Crazy. I was also really hoping your texture pack for MM could get ported over to these versions. It's so good it's hard for me to imagine playing the game without it now.

  • @aeroburger
    @aeroburger16 күн бұрын

    Those shadows look so pretty, I’m not usually one to like high-fidelity enhancements in older games but wow

  • @Liam-pf7ih
    @Liam-pf7ih13 күн бұрын

    The people behind this are for sure extremely talented, I wonder what properties static recomp has that made it the way to solve the issues with past n64 emulators.

  • @alphabitserial
    @alphabitserial17 күн бұрын

    This is insane. The assets and instructions are colocated in the ROM file - solving this problem seemed near-impossible, I would love to hear more about how this works.

  • @DensetsuVII
    @DensetsuVII17 күн бұрын

    Dear Nerrel, as a complete nincompoop who's never dabbled with roms but owns original N64 hardware, this is the first video I've seen that made me want to try and preserve/replay my old cartridges on PC. Would you consider making a guide for us imbeciles, who would love to transfer our old files and carts to PC but really don't know where to start? If a guide exists, a link would be appreciated too, but nothing will replace a snazzy Nerrel video I suspect. Thanks as always for doing God's- errr Tingle's work~

  • @Ronbotnik

    @Ronbotnik

    17 күн бұрын

    if you REALLY dont want to just download the roms off the internet, just search up rom dumping. there are guides everywhere

  • @MagikarpPower

    @MagikarpPower

    17 күн бұрын

    you can find some guides on YT but I believe you'll need a tool to do so

  • @BraxonGG

    @BraxonGG

    17 күн бұрын

    N64 is a complicated case as it will most definitely require additional hardware in order to make the backups, so good luck with that Might be worth checking out some backup devices and guides

  • @TheGameTechnician
    @TheGameTechnician14 күн бұрын

    Ogre Battle 64. You can tell the game wanted to be a computer RTS so hard. You literally move around a cursor the entire time. I would kill to see this on a computer.

  • @OmegaGlops
    @OmegaGlops15 күн бұрын

    Wow! I'd love to see this kind of approach applied to other consoles in the upcoming years. I wonder how many years it will take for the world see recompilations of PlayStation, Dreamcast, GameCube, and Wii games in this manner!

  • @notimportant3033
    @notimportant303317 күн бұрын

    I hope this method can be extended to other systems and other games. Imagine recompiling classic fighting games and adding modern features like training mode, combo trials and rollback netcode without the need for emulation.

  • @Unveilerino
    @Unveilerino17 күн бұрын

    When I saw the title I thought you would talk about the decompilation project since they plan on releasing it later this year, But boy was I wrong. I was stunned for like 30 minutes, just couldn't believe what I was seeing. Wiseguy is a god damn genius. It's insane to think that this is not the future of game preservation, it's the present.

  • @D.H.1082
    @D.H.108213 күн бұрын

    9:15 Guess this game will never die. We shoulda buried it long ago, alongside E.T. for the Atari.

  • @gabz7802
    @gabz780213 күн бұрын

    I hope they add a "camera control on right joystick option"

  • @Abbadon120
    @Abbadon12017 күн бұрын

    This is so fucking rad can't wait to play Superman 64 with Ray Tracing!

  • @KokoroKatsura

    @KokoroKatsura

    17 күн бұрын

    HUGE ANIME BREASTS

Келесі