mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-12-22 09:30:45 +00:00
try new z column ordering
This commit is contained in:
parent
d46d2557a9
commit
f048dcaceb
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user