File tree 3 files changed +1378
-0
lines changed
3 files changed +1378
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ impl Axecutor {
66
66
Neg => self . mnemonic_neg ( i) ,
67
67
Nop => self . mnemonic_nop ( i) ,
68
68
Not => self . mnemonic_not ( i) ,
69
+ Or => self . mnemonic_or ( i) ,
69
70
Pop => self . mnemonic_pop ( i) ,
70
71
Push => self . mnemonic_push ( i) ,
71
72
Ret => self . mnemonic_ret ( i) ,
@@ -144,6 +145,7 @@ pub enum SupportedMnemonic {
144
145
Neg = 464 ,
145
146
Nop = 465 ,
146
147
Not = 466 ,
148
+ Or = 467 ,
147
149
Pop = 590 ,
148
150
Push = 640 ,
149
151
Ret = 662 ,
@@ -223,6 +225,7 @@ impl TryFrom<Mnemonic> for SupportedMnemonic {
223
225
Neg => SupportedMnemonic :: Neg ,
224
226
Nop => SupportedMnemonic :: Nop ,
225
227
Not => SupportedMnemonic :: Not ,
228
+ Or => SupportedMnemonic :: Or ,
226
229
Pop => SupportedMnemonic :: Pop ,
227
230
Push => SupportedMnemonic :: Push ,
228
231
Ret => SupportedMnemonic :: Ret ,
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ pub mod mul;
52
52
pub mod neg;
53
53
pub mod nop;
54
54
pub mod not;
55
+ pub mod or;
55
56
pub mod pop;
56
57
pub mod push;
57
58
pub mod ret;
You can’t perform that action at this time.
0 commit comments