| 546 | } |
| 547 | |
| 548 | double cTaskLib::Task_AndNot(cTaskContext& ctx) const |
| 549 | { |
| 550 | const int logic_id = ctx.GetLogicId(); |
| 551 | if (logic_id == 10 || logic_id == 12 || logic_id == 34 || |
| 552 | logic_id == 48 || logic_id == 68 || logic_id == 80) return 1.0; |
| 553 | |
| 554 | return 0.0; |
| 555 | } |
| 556 | |
| 557 | double cTaskLib::Task_Nor(cTaskContext& ctx) const |
| 558 | { |
nothing calls this directly
no test coverage detected