•   Guest, please read these simple rules before you request:

    1. Before requesting, always search with the FULL release name in the search box. The "is this being discussed" window is not a search engine.
    2. You can make up to 10 requests (including RE-UP) per day (24h) to avoid abuse.
    3. Include a link with info about the release, typically from srrDB or PreDB.
    4. Once your request has been fulfilled, edit the thread and mark it with the prefix "FILLED".
    5. Show your gratitude by thanking the user with a Like, do not reply with "thank you" messages.
    6. If a link is dead, leave a reply asking for a re-up instead of making a new topic.
    7. Fillers should prioritize user-friendly hosts with decent retention when possible.

      Updated on 2025-12-26.

FILLED All 286 NSO NSW releases

formeruser

LEGEND
Joined
9 Jun 2023
Messages
6,115
Appreciation score
14,325
This way is much less annoying than having to keep track of that many glorified ROM releases split over 14 threads.
Future updates will be added here.

Due to size constraints the links were moved to a separate paste:
You do not have permission to view link Log in or register now.

Paste password: SGYlpPvfh0Zhv0NGE9Fj
Total size: 61.3 GiB
You do not have permission to view link Log in or register now.
using
You do not have permission to view link Log in or register now.
unfortunately do not properly support the
You do not have permission to view link Log in or register now.
.

List of all 14 base dirnames in PRE order to make this thread findable with the search function:
Nintendo.Entertainment.System.Nintendo.Switch.Online.INTERNAL.eShop.NSW-BigBlueBox
Family.Computer.Nintendo.Switch.Online.INTERNAL.JPN.eShop.NSW-BigBlueBox
Super_Nintendo_Entertainment_System_Nintendo_Switch_Online_INTERNAL_eShop_NSW-SUXXORS
Super_Famicom_Nintendo_Switch_Online_INTERNAL_JPN_eShop_NSW-SUXXORS
Nintendo_64_Nintendo_Switch_Online_INTERNAL_NSW-SUXXORS
SEGA_Mega_Drive_Nintendo_Switch_Online_INTERNAL_NSW-SUXXORS
Nintendo_64_Nintendo_Switch_Online_JPN_INTERNAL_NSW-SUXXORS
SEGA_Mega_Drive_Nintendo_Switch_Online_JPN_INTERNAL_NSW-SUXXORS
Game_Boy_Advance_Nintendo_Switch_Online_INTERNAL_NSW-SUXXORS
Game_Boy_Nintendo_Switch_Online_INTERNAL_NSW-SUXXORS
Game_Boy_Advance_Nintendo_Switch_Online_INTERNAL_JPN_NSW-SUXXORS
Game_Boy_Nintendo_Switch_Online_INTERNAL_JPN_NSW-SUXXORS
Nintendo_64_Nintendo_Switch_Online_18_Plus_JPN_INTERNAL_NSW-SUXXORS
Nintendo_64_Nintendo_Switch_Online_MATURE_17_Plus_INTERNAL_NSW-SUXXORS

Edit: Updated title and paste (again)
 
Last edited:

BadMoFo

Member
Joined
20 Jan 2024
Messages
55
Appreciation score
1
Thank you. I feel as though I may have prompted this and I appreciate the time it takes to put something like this together.
 

2238

Member
Joined
7 Apr 2024
Messages
30
Appreciation score
1
first release+ last update is enough for have all games availlable now ? isn't that right?
I ask because you add all update
 

formeruser

LEGEND
Joined
9 Jun 2023
Messages
6,115
Appreciation score
14,325
Yes, all NSW update NSPs are cumulative and NSO patches in particular seem to simply add new ROMs. For example, the latest NES version still contains
You do not have permission to view link Log in or register now.
available since launch:
Code:
#!/bin/bash

# extract releases
7z e -so Nintendo.Entertainment.System.Nintendo.Switch.Online.INTERNAL.eShop.NSW-BigBlueBox/bbb-n-aelub.rar           > a.nsp
7z e -so Nintendo_Entertainment_System_Nintendo_Switch_Online_Update_v8.0.0_INTERNAL_NSW-SUXXORS/sxs-nes_v2424832.rar > b.nsp

# dump NSPs
hactool -t pfs0 --outdir tmp a.nsp &> /dev/null
hactool -t pfs0 --outdir tmp b.nsp &> /dev/null
rm *.nsp

# decrypt RomFS
k1=$(xxd -s 0x180 -l 0x10 -ps -u tmp/0100d870045b60000000000000000005.tik)
k2=$(xxd -s 0x180 -l 0x10 -ps -u tmp/0100d870045b68000000000000000007.tik)
a=tmp/56988d68627179b0393561018d15c4be.nca
b=tmp/8b220c6f9e7e0e7567d33d417c79b0f3.nca
hactool -k prod.keys --titlekey $k1 --romfsdir v1.0.0              $a &> /dev/null
hactool -k prod.keys --titlekey $k2 --romfsdir v8.0.0 --basenca $a $b &> /dev/null
rm -r tmp

# check for game
id=CLV-P-NAAAE
find -type f -name $id.nes | cut -c 3-
# v1.0.0/titles/CLV-P-NAAAE/CLV-P-NAAAE.nes
# v8.0.0/titles/CLV-P-NAAAE/CLV-P-NAAAE.nes
{
    jq -r ".titles[] | select(.code == \"$id\") | .title" v1.0.0/titles/lclassics.titlesdb
    jq -r ".titles[] | select(.code == \"$id\") | .title" v8.0.0/titles/lclassics.titlesdb
} | cut -c -17
# Super Mario Bros.
# Super Mario Bros.
rm -r v*
So far the only exception to this was
You do not have permission to view link Log in or register now.
from 2025-03-28, which
You do not have permission to view link Log in or register now.
the game
You do not have permission to view link Log in or register now.
.
The older releases were just posted for other hoarders collectors because why not.

Edit: Added clarification
 
Last edited:

formeruser

LEGEND
Joined
9 Jun 2023
Messages
6,115
Appreciation score
14,325
All links get checked on each paste update and replaced if necessary (31 last time) but in the 2.5 days since then a further 55 died due to an unfortunate refresh cycle timing. Those have been fixed now too.
 
Top Bottom