Difference between revisions of "83Plus:RAM:83A5"

From WikiTI
Jump to: navigation, search
m
 
Line 1: Line 1:
'''Note:''' Do not take the information on this template page as actual documentation!
+
[[Category:83Plus:RAM:By_Name|MD5Buffer]]
 
+
[[Category:83Plus:RAM:By_Address|83A5 - MD5Buffer]]
The RAM Areas are named by their start address, in hexadecimal. An example is [[83Plus:RAM:8478]].
+
 
+
You must also add something similar to the following to make your documentation show up in the category lists:
+
NaodW29-nowiki7ae0d72c124216c700000001
+
 
+
----
+
 
+
 
== Synopsis ==
 
== Synopsis ==
'''Official Name:''' ValueOfPi
+
'''Unofficial Name:''' MD5Buffer
  
'''Memory Address:''' 3141h
+
'''Memory Address:''' 83A5h
  
'''Length:''' 1,000,000 bytes.
+
'''Length:''' 64 bytes.
  
This area of memory stores the value of pi accurate to two million BCD digits. This is the value that is promptly truncated to only 14 digits by all the math routines.
+
This area of memory stores up to 64 bytes that have been passed to [[83Plus:BCALLs:8090|MD5Update]] prior to them being hashed (since the MD5 algorithm works on blocks of 512 bits at a time.)
  
 
== Comments ==
 
== Comments ==
This value can be recalculated by talking to the people inside the calculator (or that's what my math teacher says.)
+
As with [[83Plus:RAM:8259|MD5Temp]], this area is probably safe to use as long as no MD5 calculations take place.
 
+
== Credits and Contributions ==
+
* '''/usr/bin/vim:''' For being the superior editor (death to emacs!)
+

Revision as of 13:49, 28 March 2005

Synopsis

Unofficial Name: MD5Buffer

Memory Address: 83A5h

Length: 64 bytes.

This area of memory stores up to 64 bytes that have been passed to MD5Update prior to them being hashed (since the MD5 algorithm works on blocks of 512 bits at a time.)

Comments

As with MD5Temp, this area is probably safe to use as long as no MD5 calculations take place.