implement routing + storei instruction
[clump.git] / newstable.pl
index 233d317e1f660fcc3b97a432dd4204ec8594fb89..cbfbbd7da0594d2ab3b80800f418729e5a84e888 100644 (file)
@@ -17,7 +17,7 @@ my @cpus;
 
 my @newstable;
 
-my $side = 8; # there are $side * $side CPUs
+my $side = 4; # there are $side * $side CPUs
 
 for my $line (0 .. ($side - 1)) {
        $cpus[$line] = [ ($line * $side) .. (($line + 1) * $side - 1) ]
@@ -34,10 +34,10 @@ for my $cpu (0 .. ($side * $side - 1)) {
 }
 
 for my $direction (0 .. $#diffs) {
-       print "$direction: flag_or_news = {";
-       printf 'latest_news[%2d]', $newstable[0][$direction];
+       print "$direction: news_out = {";
+       printf 'news_in[%2d]', $newstable[0][$direction];
        for my $cpu (1 .. ($side * $side - 1)) {
-               printf ', latest_news[%2d]', $newstable[$cpu][$direction];
+               printf ', news_in[%2d]', $newstable[$cpu][$direction];
        }
        say '};'
 }
This page took 0.009383 seconds and 4 git commands to generate.