From 9196519fae726b6b477a0878f1eced6559759fd0 Mon Sep 17 00:00:00 2001 From: Erin Date: Tue, 11 Jul 2023 10:33:55 +0200 Subject: [PATCH] doc --- hbvm/src/vm/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hbvm/src/vm/mod.rs b/hbvm/src/vm/mod.rs index 4997c5a..182b574 100644 --- a/hbvm/src/vm/mod.rs +++ b/hbvm/src/vm/mod.rs @@ -365,6 +365,9 @@ pub enum VmRunError { /// Virtual machine halt ok #[derive(Copy, Clone, Debug, PartialEq, Eq)] pub enum VmRunOk { + /// Program has eached its end End, + + /// Program was interrupted by a timer Timer, }