This commit is contained in:
Erin 2023-07-11 10:33:55 +02:00 committed by ondra05
parent 0351a954d0
commit b218aa4a00

View file

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