Renesas Emulator System M3T-MR100 Especificaciones Pagina 16

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 41
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 15
High-performance Embedded Workshop V.4.09 Release Note
R20UT0373EJ0100 Rev.1.00 Page 16 of 41
Feb 01, 2011
1.17.6 Specifying a file in the command line
To specify a file in the command line, use a placeholder (excluding TCL).
If you wish to specify a directory not included in the placeholder, specify an absolute path.
After specifying the absolute path, this file will not be correctly found when it is in another host computer or
environment where the path content is different. In such cases, specify the file again.
FILE_LOAD ELF/DWARF2 $(CONFIGDIR)\\demo.abs
1.17.7 Separating command parameters
You can use TCL commands while TCL is enabled. The use of the TCL command batch, in which
parameters are separated by tabs, is also possible.
For {set i 0} {$i < 2} {incr i} {
puts [memory_display 300 10]
}
When TCL is disabled, TCL commands are not usable. Only white space can be used to separate parameters
so using tabs instead will cause the following error.
>TCL
TCL Disabled
>memory_display 300 10
Error: Invalid command
1.17.8 Abbreviation of a command
REMOVE_FILE
In High-performance Embedded Workshop V.3.01 or later version, the abbreviation has been changed from
“RF” to “REM”.
1.18 Enhanced compatibility between TCL commands and High-performance
Embedded Workshop commands
Due to enhanced compatibility between TCL commands and High-performance Embedded Workshop
commands*, the execution result of a High-performance Embedded Workshop command “memory_display 300
10” will not be output by the following specification.
for {set i 0} {$i < 2} {incr i} {
memory_display 300 10
}
To make the execution result of the High-performance Embedded Workshop command be output, enclose the
High-performance Embedded Workshop command with [] as a parameter of a TCL command “puts”.
for {set i 0} {$i < 2} {incr i} {
puts [memory_display 300 10]
}
*Note: Due to this enhanced compatibility, even the execution result of a High-performance Embedded
Workshop command can be assigned to a variable as a parameter of a TCL command “set”.
In the example below, since the execution result of “memory_display 300 10” is assigned to variable
“md_300_10”, you can view this result by specifying “md_300_10” with a TCL command “set”.
set md_300_10 [memory_display 300 10]
Vista de pagina 15
1 2 ... 11 12 13 14 15 16 17 18 19 20 21 ... 40 41

Comentarios a estos manuales

Sin comentarios