From 58b42e4bad37243358a9fdce9c55d5a2a6c175fb Mon Sep 17 00:00:00 2001 From: Imants Pulkstenis Date: Tue, 23 Jul 2019 16:37:21 +0300 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 71c4c4c..80b7d71 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,15 @@ Lectures: * https://www.youtube.com/watch?v=7rIjuQZSby0 * https://www.youtube.com/watch?v=vxSoiG242OA&t=911s +## Math + +Calculations are performed using floating point + + | Sign | Exponent | Mantissa | + | 1bit | 8bits | 18bits | + + 2^0 => Exponent = 'd127 = 'h7f + + Mantissa = [ ( 1-2^(-126) ) ; 0.5 ] + +