Official Rhea Discussion

Discussion in 'Sega Saturn Programming and Development' started by citrus3000psi, Jul 16, 2015.

  1. Druidic teacher

    Druidic teacher Officer at Arms

    Joined:
    Jun 6, 2006
    Messages:
    3,643
    Likes Received:
    129
    x
     
    Last edited: Jun 22, 2017
  2. MeteK

    MeteK Rapidly Rising Member

    Joined:
    Nov 24, 2012
    Messages:
    79
    Likes Received:
    8
    Right.
     
  3. MeteK

    MeteK Rapidly Rising Member

    Joined:
    Nov 24, 2012
    Messages:
    79
    Likes Received:
    8

    http://www.amazon.fr/gp/product/B00UYZB9F6?psc=1&redirect=true&ref_=oh_aui_detailpage_o01_s00
     
  4. Olschoolgamer

    Olschoolgamer Spirited Member

    Joined:
    Apr 30, 2015
    Messages:
    146
    Likes Received:
    13
    Well after updating the fw with a Lexar sd card I already had and retrying the menu process, I have everything working properly. Strangely, it now is accepting the sandisk micro sd upon startup, which it wasn't before. For months I had to reinsert several times, now it works flawlessly. Just wanted to let everyone know!
     
  5. Olschoolgamer

    Olschoolgamer Spirited Member

    Joined:
    Apr 30, 2015
    Messages:
    146
    Likes Received:
    13
    Last edited: Jan 10, 2016
  6. DBloke

    DBloke Huh huh "Member"

    Joined:
    Jul 30, 2012
    Messages:
    132
    Likes Received:
    17
    got a picture so we know what one to get?
     
    Olschoolgamer likes this.
  7. Olschoolgamer

    Olschoolgamer Spirited Member

    Joined:
    Apr 30, 2015
    Messages:
    146
    Likes Received:
    13
    I edited my last post. I did have to use 3rd party software to change the format to fat32. Sdxc cards come exfat, but Rhea needs fat32.
     
  8. MeteK

    MeteK Rapidly Rising Member

    Joined:
    Nov 24, 2012
    Messages:
    79
    Likes Received:
    8
  9. fille

    fille Rapidly Rising Member

    Joined:
    Dec 5, 2014
    Messages:
    85
    Likes Received:
    7
  10. DBloke

    DBloke Huh huh "Member"

    Joined:
    Jul 30, 2012
    Messages:
    132
    Likes Received:
    17
    Last edited: Jan 16, 2016
  11. MeteK

    MeteK Rapidly Rising Member

    Joined:
    Nov 24, 2012
    Messages:
    79
    Likes Received:
    8
  12. AlejandroVM

    AlejandroVM Member

    Joined:
    Dec 19, 2015
    Messages:
    14
    Likes Received:
    3
    Just again asking for a gnu/linux versión. Wine start to fail with RMENU again :(
     
  13. Friend of Sonic

    Friend of Sonic Spirited Member

    Joined:
    Jul 29, 2013
    Messages:
    152
    Likes Received:
    3
  14. fille

    fille Rapidly Rising Member

    Joined:
    Dec 5, 2014
    Messages:
    85
    Likes Received:
    7
    yes,tried menu,and its working perfekt.
     
  15. AlejandroVM

    AlejandroVM Member

    Joined:
    Dec 19, 2015
    Messages:
    14
    Likes Received:
    3
    Deleted
     
    Last edited: Jan 30, 2016
  16. AlejandroVM

    AlejandroVM Member

    Joined:
    Dec 19, 2015
    Messages:
    14
    Likes Received:
    3
    Updated and tested script. I'm sure it's need some aditional checks but runs ok. Off course you need RMENU.zip in your 01 folder. The script should be runned on root directory of SDCARD.

    Thanks!

    #!/bin/bash
    #rev 2016-01-25-02:31
    echo "Thanks to neuroacid, Google.com, AskUbuntu.com, stackoverflow.com"
    #Loop for entering/exiting recursive directories
    CDIR=$(pwd)
    rm $CDIR/01/BIN/RMENU/LIST.INI # Deleting old list.ini
    # Starting with LIST.INI creation
    # setting the first line of LIST.INI (RMENU)
    echo "Creating de RMENU entrace for LIST.INI"
    T=01.title=RMENU
    DI=01.disc=1/1
    R=01.region=JTUE
    V=01.version=V0.1.3
    DA=01.date=20151205
    printf "$T\r\n$DI\r\n$R\r\n$V\r\n$DA\r\n" >> $CDIR/01/BIN/RMENU/LIST.INI

    # Starting the hard work
    for i in $(find . -maxdepth 1 -type d | sort | sed -e "1d;2d;3d"); do
    DIR=${i%:} # Strip ':'
    cd $DIR
    BASENAME=`basename $(pwd)` #Folder number
    if [ "$(ls -A)" ]; then
    #Extracting values
    TITLE=`xxd -s 112 -l 35 -ps *.img | xxd -r -p | sed -e "s/\( \)*/\1/g"`
    DISC=`xxd -s 75 -l 3 -ps *.img | xxd -r -p | sed -e "s/\( \)*/\1/g"`
    REGION=`xxd -s 80 -l 10 -ps *.img | xxd -r -p | sed -e "s/\( \)*/\1/g"`
    VERSION=`xxd -s 59 -l 5 -ps *.img | xxd -r -p | sed -e "s/\( \)*/\1/g"`
    DATE=`xxd -s 64 -l 8 -ps *.img | xxd -r -p`
    #Feeding vars
    T=$BASENAME.title=$TITLE
    DI=$BASENAME.disc=$DISC
    R=$BASENAME.region=$REGION
    V=$BASENAME.version=$VERSION
    DA=$BASENAME.date=$DATE
    #Printing game directory info
    printf "$T\r\n$DI\r\n$R\r\n$V\r\n$DA\r\n" >> $CDIR/01/BIN/RMENU/LIST.INI
    printf "$DIR:$TITLE($DISC)($REGION)\r\n"
    # read -p "Press [Enter] key to start backup..."
    else #empty folders
    T=$BASENAME.title=EMPTY\ FOLDER
    DI=$BASENAME.disc=1/1
    R=$BASENAME.region=
    V=$BASENAME.version=
    DA=$BASENAME.date=
    printf "$T\r\n$DI\r\n$R\r\n$V\r\n$DA\r\n" >> $CDIR/01/BIN/RMENU/LIST.INI
    # echo $DIR " is empty"
    fi
    cd $CDIR
    done

    #Creating the iso
    echo "Ready to make de RMENU ISO"
    echo "Entering to 01 DIR"
    cd $CDIR/01/BIN/RMENU
    echo "Making the ISO"
    mkisofs -quiet -sysid "SEGA SATURN" -V "RMENU" -volset "RMENU" -publisher "SEGA ENTERPRISES, LTD." -p "SEGA ENTREPRISES, LTD." -A "RMENU" -abstract "ABS.TXT" -copyright "CPY.TXT" -biblio "BIB.TXT" -G IP.BIN -l -input-charset iso8859-1 -o $CDIR/01/RMENU.iso $CDIR/01/BIN/RMENU/
    ls -lh $CDIR/01/*.iso
     

    Attached Files:

    Last edited: Jan 24, 2016
    SONIC3D likes this.
  17. AlejandroVM

    AlejandroVM Member

    Joined:
    Dec 19, 2015
    Messages:
    14
    Likes Received:
    3
    deleted by me. Updated previous one.
     
  18. nonosto

    nonosto Intrepid Member

    Joined:
    Jan 5, 2012
    Messages:
    698
    Likes Received:
    54
    Hello

    I have a very special issue with my Saturn NTSC J: only japan .ccd image seems runs.

    Thanks
     
  19. DBloke

    DBloke Huh huh "Member"

    Joined:
    Jul 30, 2012
    Messages:
    132
    Likes Received:
    17
    You need to make a notepad file with the conrty code the system is

    https://gdemu.wordpress.com/operation/rhea-operation/
    [A simple text INI file can be put into root folder of the SD card to modify some of the Rhea default settings. The file should be named Rhea.ini
    auto_region = N
    [Where N is the code for your console region, or -1 to disable the patcher (the default setting). The codes are:
    0: JAPAN, 1: TAIWAN and PHILIPINES, 2: USA and CANADA, 3: BRAZIL, 4: KOREA, 5: ASIA PAL area, 6: EUROPE, 7: LATIN AMERICA
     
    nonosto likes this.
  20. philbee

    philbee Member

    Joined:
    Jan 3, 2015
    Messages:
    5
    Likes Received:
    2
sonicdude10
Draft saved Draft deleted
Insert every image as a...
  1.  0%

Share This Page