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

From WikiTI
Jump to: navigation, search
m (Added categories)
m (Fixed RAM link)
Line 13: Line 13:
  
 
=== Outputs ===
 
=== Outputs ===
* [[83Plus:RAM:8478|NextParseByte]]: Pointer incremented by one.
+
* [[83Plus:RAM:965D|NextParseByte]]: Pointer incremented by one.
 
* A: The byte NextParseByte is now pointing to.
 
* A: The byte NextParseByte is now pointing to.
 
* Carry flag set if you're at the end of the program.
 
* Carry flag set if you're at the end of the program.

Revision as of 11:43, 28 March 2005

Synopsis

Official Name: IncFetch

BCALL Address: 4B73

Fetches the next byte the BASIC parser would read and increments the pointer to the next byte by one.

Inputs

Outputs

  • NextParseByte: Pointer incremented by one.
  • A: The byte NextParseByte is now pointing to.
  • Carry flag set if you're at the end of the program.

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 useful inside the parser hook.