SPLat Logo

defBYTE Directive

NOTICE: Our web site is being updated, but is currently experiencing extreme slowness due to host issues. Please contact us directly.
NOTICE: SPLat Controls has moved. We are now at 1/85 Brunel Rd, Seaford, 3198. map
SPLat will be shut down for the Christmas Holiday season from Friday 20 December 2024 through Tuesday 7 January 2025. We will check emails periodically and will continue to process orders but at a slower pace. Santa hat

defBYTE Directive

The defBYTE directive directs SPLat/PC to create a byte variable and reserve a nominated amount of RAM to hold its data.  The variable will be initialised to 0 at power on.  The location of the variable is allocated automatically by SPLat/PC and might move the next time you build the code.  Thus, you should always refer to the variable by its label.

Syntax:


Label defBYTE {NumberOfBytes}

Where:

Example:

Label     defBYTE      Value

This will automatically allocate Value bytes of RAM and assign the address of the first byte to Label.

An error will be raised if SPLat/PC is unable to find enough free RAM.