From 5c87b1067f5e36df31b874ecbd07d11d91f5e92e Mon Sep 17 00:00:00 2001 From: Joop Schilder Date: Thu, 14 May 2020 12:26:29 +0200 Subject: [PATCH] Implemented M67 --- src/Machine/InstructionSet.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Machine/InstructionSet.php b/src/Machine/InstructionSet.php index 71fa012..fb26a1f 100644 --- a/src/Machine/InstructionSet.php +++ b/src/Machine/InstructionSet.php @@ -326,6 +326,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; } + }