Difference between revisions of "Front side bus"

From FreekiWiki
Jump to navigation Jump to search
(under construction)
Line 19: Line 19:
 
     AMD          [label="Is the processor \n an AMD?",fontsize="11"]
 
     AMD          [label="Is the processor \n an AMD?",fontsize="11"]
 
     AMDslow      [label="Is the speed \n less than 1GB?", fontsize="11"]
 
     AMDslow      [label="Is the speed \n less than 1GB?", fontsize="11"]
     AMDfast      [label="Ask Blaine", fontsize="11", shape="box", style="bold"]
+
     AMDfast      [label="Ask Blaine \n bwhat to use", fontsize="11", shape="box", style="bold"]
 
     speed        [label="Is the processor speed \n 500 550 650 700 \n 750 800 850 950?",fontsize="11"]
 
     speed        [label="Is the processor speed \n 500 550 650 700 \n 750 800 850 950?",fontsize="11"]
     100          [label="The FSB is 100", fontsize="11", shape="box", style="bold"]
+
     100          [label="Use PC100 memory", fontsize="11", shape="box", style="bold"]
 
     Celeron      [label="Is the processor \n a Celeron?",fontsize="11"]
 
     Celeron      [label="Is the processor \n a Celeron?",fontsize="11"]
 
     Celspeed      [label="Is it a 600 Celeron?",fontsize="11"]
 
     Celspeed      [label="Is it a 600 Celeron?",fontsize="11"]
     Cel          [label="The FSB can be a 66, 100 or 133", fontsize="11", shape="box", style="bold"]
+
     Cel          [label="Use PC100 or PC133 memory", fontsize="11", shape="box", style="bold"]
     OtherCel      [label="Are last two digits \n of the speed divisible by 3?", fontsize="11"]
+
     OtherCel      [label="Are last two digits \n of the speed 33 or 66?", fontsize="11"]
     66            [label="The FSB is 66",fontsize="11", shape="box", style="bold"]
+
     66            [label="The FSB is 66 \n but we're using PC100 memory",fontsize="11", shape="box", style="bold"]
 
     PIII          [label="Is the processor \n a PIII?",fontsize="11"]
 
     PIII          [label="Is the processor \n a PIII?",fontsize="11"]
  

Revision as of 23:06, 5 April 2006


   * if the processor speed is 533 566 600 633, or it's a Celeron, the FSB is 66 
   * if the processor speed is 600 or 900, it could be 133 or 100 
    * if the processor speed is divisible by 3 and it's a Celeron, the FSB is 66 
   * if the processor speed is divisible by 3 and it's a PIII, the FSB is 133 


<graphvizr>

 digraph D {
  1. size="7,10"
    start         [label="START HERE", fontsize="11", shape="box", style="bold"]
    AMD           [label="Is the processor \n an AMD?",fontsize="11"]
    AMDslow       [label="Is the speed \n less than 1GB?", fontsize="11"]
    AMDfast       [label="Ask Blaine \n bwhat to use", fontsize="11", shape="box", style="bold"]
    speed         [label="Is the processor speed \n 500 550 650 700 \n 750 800 850 950?",fontsize="11"]
    100           [label="Use PC100 memory", fontsize="11", shape="box", style="bold"]
    Celeron       [label="Is the processor \n a Celeron?",fontsize="11"]
    Celspeed      [label="Is it a 600 Celeron?",fontsize="11"]
    Cel           [label="Use PC100 or PC133 memory", fontsize="11", shape="box", style="bold"]
    OtherCel      [label="Are last two digits \n of the speed 33 or 66?", fontsize="11"]
    66            [label="The FSB is 66 \n but we're using PC100 memory",fontsize="11", shape="box", style="bold"]
    PIII          [label="Is the processor \n a PIII?",fontsize="11"]


    start      ->   AMD 
    AMD        ->   AMDslow [label="YES"]
    AMDslow    ->   100  [label="YES"]
    AMDslow    ->   AMDfast [label="NO"]  
    AMD        ->   speed [label="NO"] 
    speed      ->   100   [label="YES"]  
    speed      ->   Celeron [label="NO"]
    Celeron    ->   Celspeed [label="NO"]





 }

</graphvizr>