• Tutorials

  • Home
  • Compiling a GPDL Program



    Dungeon Craft Help Home

    The compiler is named GPDLcomp.exe. The syntax of the command line to compile a program is:

    GPDLcomp sourceFile compiledResult [listing]

    SourceFile is your ascii text file that contains the program and compiledResult is the resulting binary file which must be named talk.txt if it is to be used by UAF at runtime. The listing is optional. If a filename is provided for the listing then an "assembly-language" listing file will be generated. The listing can be useful for debugging because the errors that occur at runtime reference absolute addresses within the program.

    Example:

    GPDLcomp RedEye.txt talk.bin RedEye.lst