StdPCMD MAIN EXPORT ; This will be the entry point IMPORT DOPCOMMAND ; name of the Pascal PROCEDURE that is the PCMD ; we IMPORT externally referenced routines ; from Pascal (in this case, just one) BRA.S @0 ; branch around the header to the actual code DC.W 0 ; flags word DC.B 'PCMD' ; type DC.W 0 ; ID number DC.W 0 ; version @0 JMP DOPCOMMAND ; this calls the Pascal PCMD END