1 //
2 // Copyright (c) 2010-2022 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license textis available in 'licenses/MIT.txt'
6 //
7 namespace Antmicro.Renode.Peripherals.CPU
8 {
9     public enum ExecutionResult : ulong
10     {
11         Ok = 0,
12         Interrupted = 1,
13         WaitingForInterrupt = 2,
14         StoppedAtBreakpoint = 3,
15         StoppedAtWatchpoint = 4,
16         ExternalMmuFault = 5,
17         Aborted = ulong.MaxValue
18     }
19 }
20