daisychaining MAX7219

Thanks guys,
Interestingly enough, there is no problem with sending using Shiftout .

I think I will wire up a few more pcbs and test both SPI and Shiftout.
I need two x 8 character team names for this project, but the next job has 24 characters.
( This current project also has 28 x 7seg displays which I will use TPICs for. )

for (x = 1; x<8; x=x+1){
         digitalWrite (latchPin, LOW);
           shiftOut(dataPin, clockPin, MSBFIRST, x);  
           shiftOut(dataPin, clockPin, MSBFIRST, (displayArrayG [x-1]));
            shiftOut(dataPin, clockPin, MSBFIRST, x);  
           shiftOut(dataPin, clockPin, MSBFIRST, (displayArrayA [x-1]));    
          digitalWrite (latchPin, HIGH);

}