try new z column ordering

This commit is contained in:
Mark Canlas 2018-05-08 23:03:43 -04:00
parent d46d2557a9
commit f048dcaceb

View File

@ -165,8 +165,9 @@ object MatchOpcodes {
val columns =
for {
y <- 0 to 1
xx <- Seq(3, 1, 2, 0)
} yield (xx << 1) + y
x <- 0 to 1
z <- 0 to 1
} yield (z << 2) + (x << 1) + y
val rows =
0 to 7