From e7c014f6e4365fef41914a0b62738957789b2c5e Mon Sep 17 00:00:00 2001 From: ondra05 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 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, }