Homebrew Coverflow DS (New project)

J8son

Well-Known Member
Newcomer
Joined
Feb 14, 2010
Messages
61
Trophies
0
XP
46
Country
United States
CAUTION:

I just found out that some games can FUBAR your whole setup and will cause you to have to reformat your card and loose ALL your save data.

I just tried to play Sonic Rush Adventure (the sequel to Sonic Rush that works fine by the way). It said it had to format the save data and then everything on the card was overwritten.

Use caution!
 

Mantis41

Well-Known Member
Member
Joined
Jun 3, 2009
Messages
1,851
Trophies
0
Location
earth
XP
444
Country
United States
J8son said:
CAUTION:

I just found out that some games can FUBAR your whole setup and will cause you to have to reformat your card and loose ALL your save data.

I just tried to play Sonic Rush Adventure (the sequel to Sonic Rush that works fine by the way). It said it had to format the save data and then everything on the card was overwritten.

Use caution!
I think it is loader.nds that is messing things up. We need a clever person to write a new loader for the autocalls to ysmenu. I think I got that right. Feel free to slate. I don't know shit about programming.
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
My modified bootlib no longer prevents ROM loading on SDHC.
http://gbatemp.net/index.php?showtopic=208136
See chishmloader/chishm.bin

#new nds.yslaunch_gpl.nds (uses bootlib) works perfect on my SDHC.

Also I reorganized NDS loader part... My code should be more portable than before.

BTW how did you get boot.bin? I think it is a GPLed component...

### So... I'd like update of legacy DSision
smile.gif
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
Xenon++ said:
My modified bootlib no longer prevents ROM loading on SDHC.
http://gbatemp.net/index.php?showtopic=208136
See chishmloader/chishm.bin

#new nds.yslaunch_gpl.nds (uses bootlib) works perfect on my SDHC.

Also I reorganized NDS loader part... My code should be more portable than before.

BTW how did you get boot.bin? I think it is a GPLed component...

### So... I'd like update of legacy DSision
smile.gif

So you have modified the load.bin to work on SDHC?
 

CannonFoddr

Regular GBATemp Lurker
Member
Joined
Sep 23, 2006
Messages
4,134
Trophies
1
Age
55
Location
Sitting by computer
Website
www.youtube.com
XP
1,233
Country
OK - I'm lazy I admit it - but can't be bothered to go through 36 pages just to find out a couple of things

> Does this work on acekard 2i ??
> Will it load commercial ROMS NOT using YSMenu but AKAIO loader instead (I've read YSMenu can brick the ak2i) ??
> Does it work with SDHC cards as well ???


Thanks in advance
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
Once my modified bootlib is integrated in DScovered, I'll make alternative loader.nds for general extlink loader.
#I'm wondering why DScovered doesn't support extlink.dat, which should be better.
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
Alternative loader.nds is done. Standalone test done, but I cannot test it whole until boot.bin in DScovered updated.

BTW does DScovered corrupts the save? I use Feb 14 version.
 

AAcrazyman

Well-Known Member
Member
Joined
Feb 28, 2010
Messages
119
Trophies
0
XP
91
Country
United States
Xenon++ said:
Alternative loader.nds is done. Standalone test done, but I cannot test it whole until boot.bin in DScovered updated.

BTW does DScovered corrupts the save? I use Feb 14 version.

Xenon++, when will boot.bin be updated? Is it possible for you to update it and just post the download link here?
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
Xenon++ said:
BTW does DScovered corrupts the save? I use Feb 14 version.

It does, but only in the same way that ysmenu does. I will remove that 'feature' for the next build to see if anyone still has the problems, but I have never had such a problem on my card at all.

+ Updating DScovered with your loader now...
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
AAcrazyman said:
sooooo xenon++'s loader will make DScovered work for SDHC right???

Not only 'will' but DOES. I just tested it.
I'll upload it once I have made a couple of minor changes to Dscovered. I'm afraid that the loader will be the only major update in this build, I have been spending most of my time recently trying to learn snes programming.
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
Thank you for testing.

By the way, this is snippet of my bootlib module in mshl2tools:
CODEvoid runNdsFile (const char* filename){
ÂÂÂÂstruct stat st;
ÂÂÂÂif (stat (filename, &st) < 0) {
ÂÂÂÂÂÂÂÂ_consolePrintf("Cannot stat %s\n",filename);while(1);
ÂÂÂÂ}
ÂÂÂÂrunNds (chishm_bin, chishm_bin_size, st.st_ino, true, true);
}

So the parameter of runNds "initDisc" has to be true.

#Actually I have omitted clearing registers in bootlibSDHC/MoonShellSimply1.71.6.
 

The Catboy

GBAtemp Official Catboy™: Big Smug
Member
Joined
Sep 13, 2009
Messages
26,705
Trophies
4
Location
Making a non-binary fuss
XP
33,795
Country
Antarctica
Xenon++ said:
The Pink Cat Boy said:
Kinda a dumb question, but will this work on M3 Real (or any of the firmwares in the Hex-Boot?)
At least we must have extlink loader for MoonShell2.
If there is, DScovered will work.
Alright, so how do you get that and what are the steps to installing it?
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
Latest update - 10/03/2010

Added setting for softreset through ysmenu, see d_system/options.ini
Now works on SDHC
system folder changes to d_system. (must use new DScovery.exe to set up card)
Added ttmenu.dat for dstt and _ds_menu.dat for R4ds, not need to convert anything (i hope).

Download here.


If you want to override the ysmenu softreset option, change d_system/options.ini, ysmenu_soft_reset=1, this will enable soft reset for all games booting with ysmenu. Setting 0 will return control to ysmenu.

You will have to update your card again through the new DScovery.exe (or just rename the system folder to d_system.
I have also updated the loader.nds to use Xenon++'s update, so it should work right away.
 

AAcrazyman

Well-Known Member
Member
Joined
Feb 28, 2010
Messages
119
Trophies
0
XP
91
Country
United States
It still doesn't work on my Acekard 2.1, AKAIO 1.5.1, and 4gb SDHC setup!
frown.gif

Whenever I try and load a ROM I still get that stupid black screen!
 
General chit-chat
Help Users
  • Plastisheep @ Plastisheep:
    And yes it is real Linux
  • Plastisheep @ Plastisheep:
    Its a very cool port... if I could get itto work
  • Plastisheep @ Plastisheep:
    @SylverReZ I thought you mentioned me lol
  • Plastisheep @ Plastisheep:
    my discord name is thisone
  • SylverReZ @ SylverReZ:
    Not interested in that, but, what was you trying to do with DSLinux?
  • Plastisheep @ Plastisheep:
    Interested in what? But anyway I was trying to run it on my DSi with a SD card (I believe it is compatible as long as I run it in DS mode)
  • Plastisheep @ Plastisheep:
    I made a thread for it
  • Skelletonike @ Skelletonike:
    2h until work is finished
  • AncientBoi @ AncientBoi:
    uh no. you have to do overtime :tpi:
  • Skelletonike @ Skelletonike:
    a big nope
  • T @ TimeGBAtmep:
    Hey, so noobie wii modderhere, with an already hacked wii from my brother with homebrew channel ands hitand d2x cIOS installer, so i was trying to run some old wii games i lost off of USB Loader GX, im aware that your supposed to use a usb drive, but currently the only drive i have is used for steam games and personal stuff so i'm gonna try running them off a 32 GB Fat32 SD Card that i use for all the wii mods i have, but when i try and launch skyward sword from usb loader gx, it goes black for a second then sends me back to homebrew channel? i just looked for guides on here and saw one that said to install CiOS v8 Final Base 57 onto slot 49? but it still does the same even after i do that
  • AncientBoi @ AncientBoi:
    [calls your boss to make it so] :rofl2::evil:
  • T @ TimeGBAtmep:
    and should i make this a post? probably
  • Skelletonike @ Skelletonike:
    Yeah, always make posts.
  • T @ TimeGBAtmep:
    got it
  • Skelletonike @ Skelletonike:
    The chat isn't that viewed, you'll usually find the same members and they're like 10 active or so
  • Skelletonike @ Skelletonike:
    posts get more visibility, and if you do get an answer, it won't be lost in the sea of convos
  • T @ TimeGBAtmep:
    okay this is embarrasing how do i make a non blog post
    T @ TimeGBAtmep: nvm