Menu

startup

Anonymous
2015-01-29
2015-01-29
  • Anonymous

    Anonymous - 2015-01-29

    The start-up from my gwbasic prog’s is gwbasic/s:256/f:5.
    How can I simulate this in pc-basic
    s=size and f=files

    Thanks for any responce

    G.Laseur

     
  • Rob Hagemans

    Rob Hagemans - 2015-01-29

    Hi, PC-BASIC implements all GW-BASIC command-line options, but they need to be preceded by a - rather than a / and connected to the number with a =. So the command-line corresponding to
    GWBASIC /s:256 /f:5
    would be:
    pcbasic -s=256 -f=5

    For a full list of command-line options, run pcbasic -h

    Hope this helps - let me know if it works for you!

    Rob