Renesas Emulator System M3T-MR100 Especificaciones Pagina 8

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 41
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 7
High-performance Embedded Workshop V.4.09 Release Note
R20UT0373EJ0100 Rev.1.00 Page 8 of 41
Feb 01, 2011
1.11.2 Deregistration of components and tools
After you have deregistered a component or tool from the High-performance Embedded Workshop by
clicking on the [Unregister] button in the [Tools Administration] dialog box, the component or tool will not
be registered to the High-performance Embedded Workshop even if you install a software product including
that component or tool.
To register the component or tool, use the [Register] button on the [Tools Administration] dialog box. The
[Tools Administration] dialog box must be invoked before a workspace is opened.
Select [Administration] from the [Tools] menu to open the [Tools Administration] dialog box.
1.12 Debugging facility (common to all debuggers)
1.12.1 Source-level execution
Even standard C libraries are executed by [Step In]. To return to a higher-level function, click on the [Step
Out] button.
In a “for” statement or a “while” statement, executing a single step does not move to the next line. To move
to the next line, execute two steps.
If [Step Out] is executed within an inline function, the program counter (PC) returns to the caller of the non-
inline function which called that inline function.
Example: When main() calls Func(), which calls inline InFunc()
10 int a = 0;
11 main()
12 {
13 Func();
14 }
15
16 void Func()
17 {
18 InFunc();
19 }
20
21 inline void InFunc()
22 {
23 a++;
24 }
When [Step Out] is executed on line 23, the PC returns to line 14. That is, the result is the same as when
[Step Out] is executed within Func() (i.e. the PC does not stop at line 19).
1.12.2 Moving source file position after creating load module
When the source file is moved after the load module has been created, the [Open] dialog box, which specifies
the source file, may be displayed during debugging the created load module.
Select the corresponding source file and click on the [Open] button.
1.12.3 Editor window
After modifying the program displayed in the editor window and reloading the source files and load modules,
close the editor window then open it again; otherwise the program displayed in the window may not be
correct.
Vista de pagina 7
1 2 3 4 5 6 7 8 9 10 11 12 13 ... 40 41

Comentarios a estos manuales

Sin comentarios