Overview of Profiling.
Overview of the Profiler
──────────────────────────────────────────────────────────────────────────────

The collection of tools that we have given you under the Profiler menu
allows you to build a list of all of the function names in your program,
with information about the timings of the function calls - with the ability
to view the results in many ways.

From the results you will be able to find both the fastest and the slowest
functions that you have. Add this to the number of times that the function
is called and you can determine what should be going into the root module -
for real mode applications.

The first step in using the profiler is the biggest - Get the Program
finished - since we're all programmers, how's about getting the program at
least running. This will allow the profiler to at least be able to do
something, otherwise the results are gonna be pretty damn useless.