DataLong

Last Modified: 1/1/2021

Inserts data into your ROM that can be read using the ReadLong command and the ReadLong&() function.

Arguments

NameTypeRequiredDescription
Value Integer Yes The data you want inserted into your ROM.

Example

Syntax: DataLong <Value>, [<Value>]
    Reload MyData
    ReadLong x,y
    Print x,y
 
MyData:
    DataLong 1,2,3,4

Remarks

The value range is equivalent to the size of a Long, which is 4 bytes. Both positive and negative values can be used here.

See Also

Data, DataInt, Read, ReadInt, ReadLong, Read(), ReadInt(), ReadLong&()