Git Product home page Git Product logo

sqrt_test's People

Contributors

hexwab avatar tobylobster avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

sqrt_test's Issues

C versions?

It would be interesting to also compare against algorithms expressed in C (compiled using whichever is the best compiler for the 6502).
This is the isqrt code I use on the 6809 using gcc-6809 (where divides should be avoided at all costs and multiplies minimised where sensible) when programming for the Vectrex where RAM is at a premium and lookup tables are usually avoided, to allow more code in the available EPROM space. It generates successive squares iteratively and stops when the parameter lies between one square and the next.

uint8_t IterSqrt(uint16_t b) {
  uint8_t i, j;
  uint16_t step, prev, tot, isquared, jsquared;
  if (b <= 1) return b;
  i = j = 0; isquared = prev = tot = 0; step = 1;
  for (;;) { // iterations cost cheap compared to the 5 x 16-bit divides in software needed by NewtonSqrt.
    tot += step; step += 1; jsquared = tot+prev; prev = tot;     // calculate squares incrementally using 'table of differences' method.
    if (jsquared == 0) return 255U; // overflow and loop-end test in one!
    if (b >= isquared && b < jsquared) return i;     // test plausible square root: sqrt(b) = i IF i^2 <= b < (i+1)^2
    i += 1; isquared = jsquared;
  } // loop contains two full adds, two increments, and 3 comparisons.
}

If you ever feel the urge, a similar comparison for division algorithms would be interesting and also (from a purely personal point of view) a similar survey for 6809 code (where there is a hardware MUL instruction but no divide).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.