diff --git a/hbvm/src/vm/mod.rs b/hbvm/src/vm/mod.rs index 4997c5a6..182b574d 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, }