POSTIF(13) 將目前的CL 數據 送到 後處理去執行
Rslt=POSTF(13)
例如:
CIMFIL/ON,MACHIN $$ Startcode
rslt=POSTF(13) $$ MUST DO
prmpt=TEXT/'ENTER PROGRAM NUMBER'
rslt=FILEF(0,1,prmpt) $$ File function and write to screen
prgnm=TEXT/READ,0 $$ Read from the screen
INSERT/'O',prgnm,'$'
PREFUN/90,NEXT $$ G90
PREFUN/80,NEXT $$ G80
PREFUN/17,NEXT $$ G17
PREFUN/0 $$ G00
CIMFIL/OFF
或
CIMFIL/ON,LOADTL
rslt=POSTF(20) $$ Save current Record
AUXFUN/1 $$ Output M1, ALSO could just type OPSTOP
rslt=POSTF(21) $$ Load the save Record
rslt=POSTF(13) $$ Process current CL
CIMFIL/OFF |