soft-float
Erin 2023-07-11 10:33:55 +02:00
parent 4f53fb1c87
commit 9196519fae
1 changed files with 3 additions and 0 deletions

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