setTarget method

Asm setTarget(
  1. String path
)

ActionSetTarget(オペコード0x8B)。以降のアクションのカレントターゲットとする pathをSJISのnull終端文字列としてオペランドに書き込む。

Implementation

Asm setTarget(String path) {
  _op(0x8B, [...encodeSjis(path), 0]);
  return this;
}