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

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|appData]]
 
+
[[Category:83Plus:RAM:By_Address|8000 - appData]]
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-nowiki31a83aa75dbb34b500000001
+
 
+
----
+
 
+
 
== Synopsis ==
 
== Synopsis ==
'''Official Name:''' ValueOfPi
+
'''Official Name:''' appData
  
'''Memory Address:''' 3141h
+
'''Memory Address:''' 8000h
  
'''Length:''' 1,000,000 bytes.
+
'''Length:''' 256 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 functions as scratch memory for the boot code.
  
 
== Comments ==
 
== Comments ==
This value can be recalculated by talking to the people inside the calculator (or that's what my math teacher says.)
+
One popular use of this area is to store a public key for validation by [[83Plus:BCALLs:801B|RSAValidate]] or [[83Plus:BCALLs:80A2|Rabin]].
  
== Credits and Contributions ==
+
It is generally free for programs to use.
* '''/usr/bin/vim:''' For being the superior editor (death to emacs!)
+

Revision as of 09:48, 29 March 2005

Synopsis

Official Name: appData

Memory Address: 8000h

Length: 256 bytes.

This area of memory functions as scratch memory for the boot code.

Comments

One popular use of this area is to store a public key for validation by RSAValidate or Rabin.

It is generally free for programs to use.