add eq, neq predicates.

This commit is contained in:
Mark Thom
2018-02-10 23:34:30 -07:00
parent 211bdd3a13
commit e7560150b0
11 changed files with 172 additions and 48 deletions

View File

@@ -568,3 +568,15 @@ macro_rules! ground_execute {
Line::Control(ControlInstruction::GroundExecute)
)
}
macro_rules! eq_execute {
() => (
Line::Control(ControlInstruction::EqExecute)
)
}
macro_rules! not_eq_execute {
() => (
Line::Control(ControlInstruction::NotEqExecute)
)
}