Sorry for the confusion. For the tests in project 8 that require it, there are special Sys.vm files:
-rw---- 606 1-02-2005 8:01p projects/08/FunctionCalls/FibonacciElement/Sys.vm
-rw---- 621 1-02-2005 8:02p projects/08/FunctionCalls/StaticsTest/Sys.vm
Your VM translator needs to process all .vm files in the directory into a single .asm file. In the case of FibonacciElement, Main.vm and Sys.vm get translated into FibonacciElement.asm so the @Sys.init/0;JMP generated for the bootstrap call will reference the (Sys.init) label generated for the "function Sys.init 0" in Sys.vm.
--Mark