diff --git a/The-Dst-Abstract-Machine-Bytecode.md b/The-Dst-Abstract-Machine-Bytecode.md index 39b6bfd..0e2ce97 100644 --- a/The-Dst-Abstract-Machine-Bytecode.md +++ b/The-Dst-Abstract-Machine-Bytecode.md @@ -171,7 +171,6 @@ failure to return or error. | `call` | `(call dest callee)` | $dest = call($callee, args) | | `clo` | `(clo dest index)` | $dest = closure(defs[$index]) | | `cmp` | `(cmp dest lhs rhs)` | $dest = dst\_compare($lhs, $rhs) | -| `debug` | `(debug)` | Suspend current fiber | | `div` | `(div dest lhs rhs)` | $dest = $lhs / $rhs | | `divi` | `(divi dest lhs rhs)` | $dest = $lhs /i $rhs | | `divim` | `(divim dest lhs im)` | $dest = $lhs /i im |