Table of Contents

ugBASIC User Manual

DECLARE FUNCTION ✓

SYNTAX

   DECLARE [SYSTEM] FUNCTION name AT address [ ( par1 [, par2 [, ... ] ] ) ] RETURN ret [ ON targets ]
   par : name AS type ON register
   par : name AS type ON STACK(width)
   ret : register AS type | STACK(width) AS type
   width: BYTE | WORD | DWORD
   targets : name of targets, separated by comma (,)

PURPOSE

The DECLARE FUNCTION is a way to define and call external procedures written in machine language and to insert assembly into the sources. The procedures defined in this way can be called as if they were an integral part of the language, and any result value can be retrieved by calling it as a function:

'''value = test[]'''

EXAMPLE

  DECLARE SYSTEM FUNCTION test ON CPC, ZX

See also the following example files:

ABBREVIATION

 DecFu

AVAILABLE ON

SEE ALSO

DECLARE PROCEDURE

ANY PROBLEM?

If you have encountered a problem using this command, if you think there is a bug or the explanation is unclear, please open an issue for this keyword on GitHub. Thank you!

POWERED BY