Recent content by YourNerdyJoe

  1. YourNerdyJoe

    Gaming What game would you like to see in the first GBAtemp Switch Tournament?

    Will the tourney be streamed? Don't think i'll participate but willing to watch some MK8
  2. YourNerdyJoe

    Tempmas 2016: Join the competition to win a Nintendo Switch!

    Here's my entry! Looks like I wasn't the only one who thought to make a romhack.
  3. YourNerdyJoe

    Assassin’s Creed Chronicles: India – Deep Dive Trailer

    Am I the only one that thinks this would've made a perfect vita game?
  4. YourNerdyJoe

    Homebrew [Request] super mario maker 3ds

    Maybe when the love2d port is further along someone could try running mari0 on 3ds. Iirc it had an editor mode.
  5. YourNerdyJoe

    Homebrew [Release] OpenRegion - Bypass region lock without internet on 4.x

    Actually, regionthree is much more complex than this. Regionthree uses an exploit to inject a block of code into the download play app (which requires a very complex rop chain). Openregion is just a rop chain version of that small block of code which in c looks something like...
  6. YourNerdyJoe

    Homebrew [Release] Flappy Pixel

    lol need to try this out when i get the chance.
  7. YourNerdyJoe

    Hacking 3DS with non-existent firmware

    iirc the number after the dash represents the web browser version which doesn't get updated by game cart updates.
  8. YourNerdyJoe

    Homebrew Homebrew Development

    Rinnegatamante's bcwav question reminded me of something I meant to release back in July. https://github.com/YourNerdyJoe/debanner Nothing big, just separates the CBMD and BCWAV files from a banner file. I believe I got the default.bcwav from the banner.bin that came with makerom using this.
  9. YourNerdyJoe

    Homebrew [Release] OpenRegion - Bypass region lock without internet on 4.x

    It's an ROP chain not asm. So the program counter is jumping to 0x0010C250 which is the memory location that contains a function that runs the RebootSystem command.
  10. YourNerdyJoe

    Homebrew [Release] OpenRegion - Bypass region lock without internet on 4.x

    Update: Now works on firmware 4.x and 6.x https://github.com/YourNerdyJoe/openregion Jan 23, 2015: This is a little something I've been working on the past two days. The GO launcher kept giving me problems in regionthree even after I got it to work once so decided to make my own version for...
  11. YourNerdyJoe

    Homebrew Homebrew Development

    Someone over at 4dsdev.org said you could append a zip to the 3dsx file copy /B program.3dsx + files.zip programwithzip.3dsx I haven't tried this so I'm not sure how you would access this in code (maybe there's something like __rom_end__ or use fs?). Otherwise you could use gbfs and compile it...
  12. YourNerdyJoe

    Homebrew Homebrew Development

    I've seen 16bit signed used
  13. YourNerdyJoe

    Homebrew Homebrew Development

    the .bin file is just the data segment of the .wav file. just cut that segment (minus the header) into a new file with a hex editor and that should be fine.