From faf7b08198ee1310eebd1f183362a1416be04d3e Mon Sep 17 00:00:00 2001 From: Zellyn Hunter Date: Mon, 11 Mar 2013 21:01:03 -0700 Subject: [PATCH] gate-level: tweak order of cpu struct fields --- visual/visual.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/visual/visual.go b/visual/visual.go index fb091df..f148d9c 100644 --- a/visual/visual.go +++ b/visual/visual.go @@ -5,16 +5,15 @@ import ( ) type cpu struct { - m icpu.Memory - cycle uint64 - nodeValues []byte // Bitmask of node values (see const VAL_* below) - nodeGates [][]uint // the list of transistor indexes attached to a node - nodeC1C2s [][]uint // the list of transistor c1/c2s attached to a node + m icpu.Memory + cycle uint64 + nodeValues []byte // Bitmask of node values (see const VAL_* below) + nodeGates [][]uint // the list of transistor indexes attached to a node + nodeC1C2s [][]uint // the list of transistor c1/c2s attached to a node + nodeDependants [][]uint // all C1 and C2 nodes of transistors attached to a node transistorValues []bool - nodeDependants [][]uint // all C1 and C2 nodes of transistors attached to a node - listIn []uint listOut []uint