//----------------------------------------------------------------------// This file contains control flags (parameters) that are used by the// ClassLinker program when generating output file from application's// class files. ClassLinker expects that the application control file// will have the same name as main application file and have '.control'// extension.//----------------------------------------------------------------------
// List of directories and/or library zip files separated by semicolon.// ClassPath is used to find files required for linking application// classes.ClassPath=.;../lib/java.jar;../lib/mot68hc11.jar;../lib/handyboard.jar
// Map file contains detailed information about all classes composing// the final binary image.// Possible values: Y or N// If 'Y' is specified then a file with extension '.map' is created.// Output map file can be created in HTML format if MapFileHtml// switch is set to 'Y'. The file extension is then '.map.html'MapFile=YMapFileHtml=Y
// List files contain source code mixed with java bytecodes.// If file name is specified then a list file with extension '.list'// is created.// Multiple list files can be created by separating the class file// names with semicolons.// Output list file can be created in HTML format if ListFileHtml// switch is set to 'Y'. The file extension is then '.list.html'ListFile=ListFileHtml=Y
// Possible values: Y or N// If Y is specified then all console output is suppressed.// However, all error messages will be printed.QuietMode=N
// Specifies location where native lookup table files will be placed.// Two files are generated: C file and the assembly in GNU ASxxxx format.// If no extension is specified then assembly file will be appended // with ".asm".NativeLookupFile=asm/lookup.s11
// Section name in assembly file under which lookup table is placed.NativeLookupAsmSection=_CODE
// When generating output file for CPUs with 64KB physical addressing space// this option should be set to 'Y'.// This will allow ClassLinker to use 16 bit wide offsets and thus generate // more compact output file. // This flag is intended for the future enhancements - do not change!8bitCPU=Y
// Application version number - max length is 12 characters.// Application description - max length is 32 characters// If length is greater than max. size that the string will be truncated.//AppID=HandyBoard01 // here added "//" by raphaelxia on Jan 2,2006 , as comment//AppDesc=HandyBoard demonstration // here added "//" by raphaelxia on Jan 2,2006 , as comment
// Format of the additional output file // First parameter specifies the format of the output file// Second parameter specifies the file extension of the otput file. Default is '.s'// Supported formats: Intel and MotorolaOutputFormat=Motorola,s19
// Base address(in hex or decimal) of application in the memory.// If specified, then it will be used to show absolute locations in the // map file and used as based address in the file specified by the // OutputFormat flag. This address is also exported into native lookup files// so that it can be used by the native code to specify location of this// Java applicationBaseAddr=0xC000
