When routines declared with the @LOAD pragma are in the main
segment, they are not executed. This is probably not a problem
because the code of these routines could be easly moved in the
main routine but that should be either fixed or documented.
Example:
.sub foo @LOAD
print "foo executed\n"
.end
.sub main @MAIN
print "main\n"
.end
--
stef