Difference between revisions of "83Plus:BCALLs:4DCB"

From WikiTI
Jump to: navigation, search
m (Example: changed the bcall name to the proper one for this example ;))
(Destroys)
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
[[Category:83Plus:BCALLs:By Name:Variable|DeleteApp]] [[Category:83Plus:BCALLs:By Name|DeleteApp]] [[Category:83Plus:BCALLs:By Address|4DCB - DeleteApp]]
 
== Synopsis ==
 
== Synopsis ==
 
'''Official Name:''' DeleteApp
 
'''Official Name:''' DeleteApp
Line 13: Line 14:
  
 
=== Destroys ===
 
=== Destroys ===
Unknown, please add when you check this.
+
*A
  
 
== Comments ==
 
== Comments ==
This B_CALL deletes an application without any confirmation from the user. It has been tested to work with the first page of the app to delete in the accumulator, but other pages might also work.
+
This B_CALL deletes an application without any confirmation from the user by writing a zero to 4000h at the page. It has been tested to work with the first page of the app to delete in the accumulator, but other pages might also work.
  
 
== Example ==
 
== Example ==
 
  <nowiki>ld a,15h
 
  <nowiki>ld a,15h
 
B_CALL DeleteApp</nowiki>
 
B_CALL DeleteApp</nowiki>

Latest revision as of 13:19, 6 February 2008

Synopsis

Official Name: DeleteApp

BCALL Address: 4DCB

Deletes an application.

Inputs

  • A: The first page of the app you want to delete.

Outputs

None

Destroys

  • A

Comments

This B_CALL deletes an application without any confirmation from the user by writing a zero to 4000h at the page. It has been tested to work with the first page of the app to delete in the accumulator, but other pages might also work.

Example

ld a,15h
B_CALL DeleteApp