gmqcc/tests/correct-logic-2-s.tmpl

13 lines
267 B
Cheetah
Raw Normal View History

2012-12-22 16:55:55 +00:00
I: correct-logic.qc
D: vector logic flags
T: -execute
C: -std=fteqcc -fcorrect-logic -fshort-logic
2013-08-27 08:00:24 +00:00
M: ! & | i N
2012-12-22 16:55:55 +00:00
M: 0, 0 -> 1 0 0 0 1
M: 0, x -> 1 0 1 0 1
M: x, 0 -> 0 0 1 1 0
M: x, x -> 0 1 1 1 0
M: 0, y -> 1 0 1 0 1
M: y, 0 -> 0 0 1 1 0
M: y, y -> 0 1 1 1 0