Author Topic: Floating point arithmetics theory  (Read 1633 times)

0 Members and 1 Guest are viewing this topic.

Offline aeTIos

  • Nonbinary computing specialist
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3915
  • Rating: +184/-32
    • View Profile
    • wank.party
Floating point arithmetics theory
« on: June 07, 2011, 07:38:10 am »
Some random thoughts:
Adding
Use a buffer for 'inbetween' calculations.
Code: [Select]
4.55 e3 
3.26 e3 
     +
------
7.71   Buf1
  1    Buf2
7.81   Ans

Thoughts/suggestions?
(more soon)
« Last Edit: June 07, 2011, 08:40:07 am by aeTIos »
I'm not a nerd but I pretend:

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: Floating point arithmetics theory
« Reply #1 on: June 07, 2011, 09:51:11 am »
Or just add in the carry as you go (which can be simple in assembly since it has an add-with-carry instruction)
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline aeTIos

  • Nonbinary computing specialist
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3915
  • Rating: +184/-32
    • View Profile
    • wank.party
Re: Floating point arithmetics theory
« Reply #2 on: June 07, 2011, 10:31:21 am »
It is for Axe.
I'm not a nerd but I pretend: