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

From WikiTI
Jump to: navigation, search
m (Outputs: A is returned, haven't checked what it is.)
m (Destroys: BC,HL)
Line 14: Line 14:
  
 
=== Destroys ===
 
=== Destroys ===
Unknown, please add.
+
* BC, HL
  
 
== Comments ==
 
== Comments ==
 
This B_CALL fetches the next byte the parser hasn't parsed yet and sets the pointer to the next byte that should be parsed one forward. It is used internally in the parser and is usefull inside the parserhook(ADD LINK).
 
This B_CALL fetches the next byte the parser hasn't parsed yet and sets the pointer to the next byte that should be parsed one forward. It is used internally in the parser and is usefull inside the parserhook(ADD LINK).

Revision as of 12:41, 27 March 2005

Synopsis

Official Name: IncFetch

BCALL Address: 4B73

Fetches the next byte the (basic)parser would parse and increment the pointer to the next byte by one.

Inputs

Outputs

  • NextParseByte: Pointer incremented by one.
  • A: Something ... Not sure what

Destroys

  • BC, HL

Comments

This B_CALL fetches the next byte the parser hasn't parsed yet and sets the pointer to the next byte that should be parsed one forward. It is used internally in the parser and is usefull inside the parserhook(ADD LINK).