Implemented M67

This commit is contained in:
Joop Schilder 2020-05-14 12:26:29 +02:00
parent 9002db40aa
commit 5c87b1067f
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}
}