Difference between revisions of "84PCE:Syscalls:021FB0"

From WikiTI
Jump to: navigation, search
Line 6: Line 6:
 
'''C Function Address:''' 021FB0h
 
'''C Function Address:''' 021FB0h
  
Gets the location of the Symbol Table. This seems like a very useless call.
+
Gets the location of the Symbol Table.  
  
 
=== Function Prototype ===
 
=== Function Prototype ===

Revision as of 10:53, 22 September 2015

Synopsis

Hypothesized Official Name: GetSymTablePtr

C Function Address: 021FB0h

Gets the location of the Symbol Table.

Function Prototype

int* GetSymTablePtr(void);

Arguments

  • None (void)

Returns

  • The address of the Symbol Table.

Notes

  • This is an OS call; not present in the bootcode.
  • Full dissasembly of call:
_GetSymTablePtr:
 ld        hl, symTable
 ret