Difference between revisions of "83Plus:BCALLs:8027"
From WikiTI
m |
m |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | [[Category:83Plus:BCALLs:By_Name:Other|FindFirstCertificateField]] [[Category:83Plus:BCALLs:By_Name|FindFirstCertificateField]] [[Category:83Plus:BCALLs:By_Address|8027 - FindFirstCertificateField]] | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
== Synopsis == | == Synopsis == | ||
− | '''Official Name:''' | + | '''Official Name:''' FindFirstCertificateField |
− | '''BCALL Address:''' | + | '''BCALL Address:''' 8027 |
− | + | ||
− | + | Searches for a given field in the certificate. | |
=== Inputs === | === Inputs === | ||
− | * | + | * DE = field to search for (e.g. 0A10 to search for the calculator ID) |
− | + | ||
− | + | ||
=== Outputs === | === Outputs === | ||
− | * | + | * HL = address of the first matching field |
− | * | + | * NZ set if not found. |
=== Destroys === | === Destroys === | ||
− | * | + | * AF |
+ | * [[83Plus:RAM:8478|OP1]] | ||
== Comments == | == Comments == | ||
− | + | Flash must be [[83Plus:Ports:14|write enabled]] first. | |
== Example == | == Example == | ||
− | + | ld de,0A10h | |
− | + | B_CALL FindFirstCertificateField | |
− | + | ||
− | + |
Latest revision as of 20:33, 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
- OP1
Comments
Flash must be write enabled first.
Example
ld de,0A10h B_CALL FindFirstCertificateField