Difference between revisions of "83Plus:BCALLs:8027"

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:BCALLs:By_Name|FindFirstCertificateField]]
 
+
[[Category:83Plus:BCALLs:By_Address|8027 - FindFirstCertificateField]]
Use this template for ROMCalls on calculators that don't use banked OS calls. Simply replace every occurance of bcall/BCALL/b_call with romcall/ROMCall/call.
+
[[Category:83Plus:BCALLs:By_Name:Other|FindFirstCertificateField]]
 
+
The BCALLs are named by their b_call address, in hexadecimal. An example is [[83Plus:BCALLs:4009]].
+
 
+
Also, please put the following code (edited to reflect your call) in your page:
+
NaodW29-nowikicc5bc212dae572000000001
+
This will cause your page to show in the appropriate categories. (Change the ProveTheRiemannHypothesis, 0042, and Utility to match your call. Also, change the 83Plus to whatever category, and change the BCALLs to ROMCalls if needed.) You may put a BCALL in any number of "By Name" categories. Put it in all the ones that make sense.
+
 
+
----
+
 
+
 
== Synopsis ==
 
== Synopsis ==
'''Official Name:''' ProveTheRiemannHypothesis
+
'''Official Name:''' FindFirstCertificateField
  
'''BCALL Address:''' 0042
+
'''BCALL Address:''' 8027
''Use "Call Address" for regular 83.''
+
  
Proves the Riemann Hypothesis, storing the proof in an AppVar.
+
Searches for a given field in the certificate.
  
 
=== Inputs ===
 
=== Inputs ===
* [[83Plus:RAM:8478|OP1]]: AppVar to save proof into
+
* DE = field to search for (e.g. 0A10 to search for the calculator ID)
* HL: Maximum length of proof, in pages (must be at least 200)
+
* bit proofCorrect, (iy + proofFlags): Set to generate a correct proof
+
  
 
=== Outputs ===
 
=== Outputs ===
* Proof stored in AppVar
+
* HL = address of the first matching field
* Zero Flag: Set if successful
+
* NZ set if not found.
  
 
=== Destroys ===
 
=== Destroys ===
* af
+
* AF
  
 
== Comments ==
 
== Comments ==
This B_CALL proves the Riemann Hypothesis, giving a proof under the required number of pages. It does this by randomly guessing proofs until it finds one that works. Needless to say, the calculator's batteries will run out before this B_CALL completes.
+
Flash must be [[83Plus:Ports:14|write enabled]] first.
  
 
== Example ==
 
== Example ==
NaodW29-nowikicc5bc212dae572000000002
+
  ld de,0A10h
 
+
  B_CALL FindFirstCertificateField
== Credits and Contributions ==
+
* '''/dev/null:''' For not answering my questions about this B_CALL
+

Revision as of 17:14, 29 March 2005

Synopsis

Official Name: FindFirstCertificateField

BCALL Address: 8027

Searches for a given field in the certificate.

Inputs

  • DE = field to search for (e.g. 0A10 to search for the calculator ID)

Outputs

  • HL = address of the first matching field
  • NZ set if not found.

Destroys

  • AF

Comments

Flash must be write enabled first.

Example

 ld de,0A10h
 B_CALL FindFirstCertificateField