URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [i386/] [ts_386ex/] [tools/] [debug_ada/] [serial_debug.ads] - Rev 1765
Compare with Previous | Blame | View Log
-- This package allows one to easily add serial debugging support to any -- Ada program by simply adding "with Serial_Debug; use Serial_Debug". -- Debugging will be automatically initialized when the program is run, -- and it should be possible to interrupt the running program from ddd/gdb. -- -- Additionally, one can place explicit breakpoints for the debugger using -- the procedure Breakpoint package Serial_Debug is procedure Breakpoint; private pragma Inline (Breakpoint); end Serial_Debug;