RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Old Computer Appreciation Thread

    Scheduled Pinned Locked Moved General Discussion and Gaming
    msxmsx2pc88pc98x68000
    1.4k Posts 19 Posters 5.3m Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Z
      Zering @Folly
      last edited by

      @folly So essentially you're putting the commands in the .bat file you'd normally input into DOS?

      So if I created a blood.bat file it would be :

      cd blood
      blood.exe

      Right?

      FollyF 1 Reply Last reply Reply Quote 0
      • FollyF
        Folly @Zering
        last edited by Folly

        @zering said in Old Japanese Computer Appreciation Thread:

        @folly So essentially you're putting the commands in the .bat file you'd normally input into DOS?

        So if I created a blood.bat file it would be :

        cd blood
        blood.exe

        Right?

        Yes that should work.
        You can remove .exe

        1 Reply Last reply Reply Quote 0
        • Z
          Zering @Folly
          last edited by

          @folly said in Old Japanese Computer Appreciation Thread:

          lr-dosbox:
          file structure :

          RAYMAN.BAT
          cd/RAYMAN.bin
          cd/RAYMAN.cue
          RAYMAN/<harddrive files>(no image file)

          RAYMAN.BAT:

          @echo off
          imgmount D cd/RAYMAN.cue -t iso
          C:
          cd C:\RAYMAN
          rayman.exe save=C:\RAYMAN
          

          So I'm trying to figure out what's going on here.
          Imgmount is mounting the CD image.
          C: is indicating to DOS where to look for RAYMAN?
          I can't tell what echo off and save=C:\RAYMAN are meant to do.

          FollyF A 2 Replies Last reply Reply Quote 0
          • FollyF
            Folly @Zering
            last edited by Folly

            @zering said in Old Japanese Computer Appreciation Thread:

            @folly said in Old Japanese Computer Appreciation Thread:

            lr-dosbox:
            file structure :

            RAYMAN.BAT
            cd/RAYMAN.bin
            cd/RAYMAN.cue
            RAYMAN/<harddrive files>(no image file)

            RAYMAN.BAT:

            @echo off
            imgmount D cd/RAYMAN.cue -t iso
            C:
            cd C:\RAYMAN
            rayman.exe save=C:\RAYMAN
            

            So I'm trying to figure out what's going on here.
            Imgmount is mounting the CD image.

            Yep

            C: is indicating to DOS where to look for RAYMAN?

            Yep (EDIT: tip from adambegood -> not necessary in this example)

            I can't tell what echo off and save=C:\RAYMAN are meant to do.

            "echo off" -> you don't see the commands while loading (not necessary)
            "save=" -> game specific, I think

            1 Reply Last reply Reply Quote 0
            • FollyF
              Folly
              last edited by

              @Zering

              I also run Philips P2000 on lr-dosbox :
              https://retropie.org.uk/forum/topic/7271/philips-p2000/3

              Z 1 Reply Last reply Reply Quote 0
              • Z
                Zering @Folly
                last edited by

                @folly I did not even know the P2000 existed.
                You keep giving me things to tinker with! ^^

                FollyF A 2 Replies Last reply Reply Quote 0
                • FollyF
                  Folly @Zering
                  last edited by Folly

                  @zering said in Old Japanese Computer Appreciation Thread:

                  @folly I did not even know the P2000 existed.
                  You keep giving me things to tinker with! ^^

                  Cool, isn't it ?

                  Seems that cas support is now added in lr-mess for Philips P2000.
                  So I have to try.
                  But I think display is still monochrome.

                  1 Reply Last reply Reply Quote 0
                  • A
                    AdamBeGood @Zering
                    last edited by

                    @zering said in Old Japanese Computer Appreciation Thread:

                    @folly said in Old Japanese Computer Appreciation Thread:

                    lr-dosbox:
                    file structure :

                    RAYMAN.BAT
                    cd/RAYMAN.bin
                    cd/RAYMAN.cue
                    RAYMAN/<harddrive files>(no image file)

                    RAYMAN.BAT:

                    @echo off
                    imgmount D cd/RAYMAN.cue -t iso
                    C:
                    cd C:\RAYMAN
                    rayman.exe save=C:\RAYMAN
                    

                    So I'm trying to figure out what's going on here.
                    Imgmount is mounting the CD image.
                    C: is indicating to DOS where to look for RAYMAN?
                    I can't tell what echo off and save=C:\RAYMAN are meant to do.

                    DOSBOX mounts /home/pi/RetroPie/roms/pc as the C:\ drive by default.

                    FollyF 1 Reply Last reply Reply Quote 1
                    • FollyF
                      Folly
                      last edited by Folly

                      Dosbox (standalone):
                      This is also a nice example on how to run, for example, Philips P2000 with a game :

                      Lazy-Bugs.sh :

                      #!/bin/bash
                      /opt/retropie/emulators/dosbox/bin/dosbox -fullscreen -scaler normal3x -c "@echo off" -c "mount c: ~/RetroPie/roms/EmuOnDos/Philips_P2000T" -c "cls" -c "c:" -c "m2000 -verbose 0 -boot 1 -tape games/Lazy-Bug.cas" -c "exit"
                      

                      Batch (.bat) commands are integrated in the .sh script with [-c "etc...."].

                      1 Reply Last reply Reply Quote 0
                      • A
                        AdamBeGood @Zering
                        last edited by

                        @zering said in Old Japanese Computer Appreciation Thread:

                        @folly I did not even know the P2000 existed.
                        You keep giving me things to tinker with! ^^

                        It's so retro! Proper old school. I've never heard of it before either.

                        1 Reply Last reply Reply Quote 0
                        • FollyF
                          Folly @AdamBeGood
                          last edited by

                          @adambegood said in Old Japanese Computer Appreciation Thread:

                          @zering said in Old Japanese Computer Appreciation Thread:

                          @folly said in Old Japanese Computer Appreciation Thread:

                          lr-dosbox:
                          file structure :

                          RAYMAN.BAT
                          cd/RAYMAN.bin
                          cd/RAYMAN.cue
                          RAYMAN/<harddrive files>(no image file)

                          RAYMAN.BAT:

                          @echo off
                          imgmount D cd/RAYMAN.cue -t iso
                          C:
                          cd C:\RAYMAN
                          rayman.exe save=C:\RAYMAN
                          

                          So I'm trying to figure out what's going on here.
                          Imgmount is mounting the CD image.
                          C: is indicating to DOS where to look for RAYMAN?
                          I can't tell what echo off and save=C:\RAYMAN are meant to do.

                          DOSBOX mounts /home/pi/RetroPie/roms/pc as the C:\ drive by default.

                          Indeed your right :

                          C:
                          

                          Not necessary.

                          1 Reply Last reply Reply Quote 0
                          • FollyF
                            Folly
                            last edited by

                            Some P2000 screenshots ;-)

                            2020-11-24-182636_800x600_scrot-resized.png 2020-11-24-182734_800x600_scrot-resized.png

                            Z 1 Reply Last reply Reply Quote 1
                            • Z
                              Zering @Folly
                              last edited by

                              @folly So I think we all agree about covering every manner of old computers on this thread then? ^^

                              FollyF 1 Reply Last reply Reply Quote 0
                              • FollyF
                                Folly @Zering
                                last edited by Folly

                                @zering said in Old Japanese Computer Appreciation Thread:

                                @folly So I think we all agree about covering every manner of old computers on this thread then? ^^

                                Yes, we can.

                                Are you going to convert the thread name ?

                                Z 1 Reply Last reply Reply Quote 0
                                • Z
                                  Zering @Folly
                                  last edited by

                                  @folly Yes, and more than that. I've got some ideas, I just need time to do it ^^

                                  1 Reply Last reply Reply Quote 2
                                  • FollyF
                                    Folly
                                    last edited by Folly

                                    @AdamBeGood @Zering

                                    Just made a post :
                                    https://retropie.org.uk/forum/topic/7271/philips-p2000/4
                                    Got the P2000T working in lr-mess:
                                    Too bad, still no cas file support.

                                    @dmmarti
                                    You've made some valerino scripts too, I read.
                                    Do you have an idea for this problem?

                                    D 1 Reply Last reply Reply Quote 0
                                    • D
                                      dmmarti @Folly
                                      last edited by

                                      @folly Hmm...looks like that system still isn't setup for cassettes yet.

                                      Reading about it over on the progetto mess systems page, it's still not listed as having a -cass option.

                                      I launched my PC stand alone MAME (pretty recent version) and when I launch the P2000 system, pressing TAB to bring up the MAME GUI, I don't see any tape related devices to load a cassette into like I would expect to see.

                                      Not really sure how to load a cassette in it then.

                                      Z FollyF 2 Replies Last reply Reply Quote 1
                                      • Z
                                        Zering @dmmarti
                                        last edited by

                                        Guys, I've began editing my first post to record all the info we've discussed in this thread. It's going to take me a while so bear with me. I might also write up a list of recommended games on each system based on everybody's input.

                                        FollyF A 2 Replies Last reply Reply Quote 2
                                        • FollyF
                                          Folly @dmmarti
                                          last edited by

                                          @dmmarti said in Old Computer Appreciation Thread:

                                          @folly Hmm...looks like that system still isn't setup for cassettes yet.

                                          Reading about it over on the progetto mess systems page, it's still not listed as having a -cass option.

                                          I launched my PC stand alone MAME (pretty recent version) and when I launch the P2000 system, pressing TAB to bring up the MAME GUI, I don't see any tape related devices to load a cassette into like I would expect to see.

                                          Not really sure how to load a cassette in it then.

                                          Thank you for trying.
                                          Will look into into it later on.
                                          One day the solution will come for sure, I think ;-)

                                          1 Reply Last reply Reply Quote 0
                                          • FollyF
                                            Folly @Zering
                                            last edited by

                                            @zering said in Old Computer Appreciation Thread:

                                            Guys, I've began editing my first post to record all the info we've discussed in this thread. It's going to take me a while so bear with me. I might also write up a list of recommended games on each system based on everybody's input.

                                            Good idea to summarize everything in the first post.
                                            Look quite good altready :-)

                                            Z 1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post

                                            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.