diff --git a/src/Machine/InstructionSet.php b/src/Machine/InstructionSet.php index bc226ce..8c52c55 100644 --- a/src/Machine/InstructionSet.php +++ b/src/Machine/InstructionSet.php @@ -324,6 +324,9 @@ class InstructionSet protected function M67(Block $block): void { - throw new RuntimeException('[Enter new tool information without machine stop] is not implemented'); + $T = $block->pop('T'); + $this->CNC6600->TM->read($T); + $this->CNC6600->DR->T = $T; } + }