Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <JoesephMother> {800*MHZ, 266 *MHZ, 400, 3, 0, 2},
  2. <JoesephMother> the first is just the displayed speed. you can put anything there, it's what'll show in setcpu. set it to 2.4ghz, it'll say that, but it'll still run 800mhz
  3. <JoesephMother> 266 is the bus speed, so at 66mhz in sleep mode, it runs half the bus speed
  4. <JoesephMother> 400 is the initial clock, it can be set to 133, 266, or 400 to set different speeds
  5. <JoesephMother> 3 is the pclk, it being 1 in the bottom line is what throws the others off
  6. <JoesephMother> 0 is what you divide 400 by when setting your clock speeds, +1....no matter what number is there, add 1 to it
  7. <JoesephMother> 2 is what you multiply by after you divide the number before it
  8. <JoesephMother> so for 800mhz it's set that way because 400 / (0+1) * 2 = 800
  9. <JoesephMother> so to make it 33mhz instead of 66, you either divide by twice as much, or multiply by half as much, or a combination of the two
  10. <JoesephMother> { 33*MHZ, 133 *MHZ, 400, 1, 15, 3}, should get you there
  11. <JoesephMother> I think it's actually 32mhz, but close enough
  12. <qnhoang81> with that same logic you can oc too?
  13. <qnhoang81> true oc that is
  14. <JoesephMother> with that same logic you can overclock the apll....but without knowing how to adjust the mpll/epll with it, it makes it slower
  15. <JoesephMother> but that's the same logic the fake oc's use, {1200*MHZ, 266 *MHZ, 400, 3, 0, 3}, was how I did the crappy 1.2ghz fake oc
  16. <JoesephMother> {1066*MHZ, 266 *MHZ, 266, 3, 0, 4}, or thereabouts is how the other crappy fake oc's were
  17. <JoesephMother> {1566*MHZ, 355 *MHZ, 533, 3, 0, 3}, is mojox's fake oc
  18. <JoesephMother> {1200*MHZ, 266 *MHZ, 400, 6, 0, 3}, will get you 35 in linpack
  19. <qnhoang81> lol
  20. <qnhoang81> I can't seem to get the calc for 33mhz
  21. <JoesephMother> I can't get it for 66mhz either
  22. <JoesephMother> the pclk completely throws it off, because even though it's going from 3 to 1, it's not an even third it divides it by
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement