代入演算子 : REFオペレーターは リファレンス (ポインタ)値へ。構文:<variable name> REF= <variable name> ;例 69. 例refA : REFERENCE TO DUT; B : DUT; C : DUT; A REF= B; // corresponds to A := ADR(B); A := C; // corresponds to A^ := C;