Does anyuone know if there is any way of calling either SuperBasic or Machine Code from with an Archive procedure or interupt?
I am suspecting the answer is going to be no, but hoping someone might know

Regards
Simon
Archrtm is the 'runtime' version, while Archdev is the full version, both are in the package.4) Machine code interface
The Archive RTM and the full version of Archive provided with it support the use of machine code routines. They are interfaced to an Archive program by means of an additional usr() function and a usr qualifier to the Load command.
The machine code must be relocatable, that is, it must use only PC-relative addressing modes. In addition to the code, the file must contain a six-byte header. Bytes 0 to 3 must contain "pmcO" and bytes 4 and 5 must: be a word giving the length of the following code. It is the user's responsibility to ensure that the file has the correct header.
The machine code program (in image form, exactly as it would appear in memory) must follow the header, with its entry point at the byte immediately following the header. The code must end with a return from subroutine instruction.