Japanese
PROGRAMMER'S GUIDEXBLD User's Manual
BackForward
XBLD User's Manual

5. how to use


5.1 Setup

(1) DOS extender version (XBLD)
Copy the DOS extender "DOS4GW.EXE" to the current directory or a directory on your path.

(2) 32-bit version (XBLD32)
Open a Windows95 DOS window and prepare to start XBLD.
(Please note that it does not work in MS-DOS mode)

5.2 How to start

Enter a command in the following format from a DOS prompt: Options must be preceded by a hyphen '-' or a slash '/'.
(If you use the 32-bit version of XBLD, replace XBLD with XBLD32.)



C:> xbld [-option...] [script file name]

The option specifies a subcommand or a subcommand file.
Subcommands are instructions for instructing XBLD operations. (For details, please refer to " 6. Subcommand ")

(1) Command line specification
Subcommands are specified directly on the command line and are interpreted sequentially from the beginning.



C:> xbld - subcommand 1=argument - subcommand 2=argument ... [script file name]

(2) Subcommand file specification
This is a way to specify subcommands in a file instead of on the command line.
A file that describes a group of subcommands is called a "subcommand file."
Subcommand Interprets and executes subcommands line by line from the beginning of the file.



C:> xbld -sub=subcommand file path name [script file name]

In addition, use ";" to write comments in the subcommand file.
The string from ";" to the end of the line is ignored.

5.3 Command examples

《Example 1》 C:> xbld sample

  1. Create a disc image for creating a CD. No subcommand specified.

  2. A DSK file specified by the script file sample.scr is created.

  3. TOC files are always created.

《Example 2》 C:> xbld -p sample

  1. Specify the p subcommand for direct DOS file access.

  2. A PVD file specified by the script file sample.scr is created.

  3. RTI file and QSB file will be created.

  4. TOC files are always created.

《Example 3》 C:> xbld -otf sample

  1. Creates a file for burning the disc specified in the script file sample.scr on the fly. Specifies the otf subcommand.

  2. A PVD file and SCT file will be created.

  3. If interleaving is included, an OTI file will be created.

  4. TOC files are always created.

《Example 4》 C:> xbld -sub=sample.bld

  1. Processing is performed according to the contents of the subcommand file sample.bld.

  2. In the subcommand file, specify real-time emulation (r subcommand).

  3. Specify sample.scr as the script file.

  4. Set the maximum number of ISO files to 1024 using the i subcommand.

  5. Set the maximum number of DOS files to 2048 using the d subcommand.

sample.bld

; sample.bld

-r          ; realtime emulation

-i=1024     ; number of isofiles

-d=2048     ; number of dosfiles

sample      ; script file



BackForward
PROGRAMMER'S GUIDEXBLD User's Manual
Copyright SEGA ENTERPRISES, LTD. 1997