title: "Call" description: TRSE built-in method (from IDE help)
Call
Systems: X16,C64, MEGA65, PLUS4, C128, VIC20, PET, NES, OK64, ATARI2600, APPLEII, SNES, ORIC, BBCM, ACORN, ATARI800, MSX, SPECTRUM, GAMEBOY, AMSTRADCPC, VZ200, Z80, Z180
Parameters: a
Call( [address] );
- [address] - the address to call
Description
Performs a jsr to the specified address.
Example
Call(^$8000)
Essentially creates the following:
Asm("jsr $8000");