(Part 5)
Library of common functions - emu8086.inc
To make programming easier there are some common functions that
can be included in your program. To make your program use functions
defined in other file you should use the INCLUDE directive followed by a
file name. Compiler automatically searches for the file in the same folder
where the source file is located, and if it cannot find the file there - it
searches in Inc folder.
Currently you may not be able to fully understand the contents of
the emu8086.inc (located in Inc folder), but it's OK, since you only need
to understand what it can do.
To use any of the functions in emu8086.inc you should have the
following line in the beginning of your source file:
include 'emu8086.inc'