DataInt

Last Modified: 1/1/2021

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

Arguments

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

Example

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

Remarks

The value range is equivalent to the size of an Integer, which is 2 bytes. Both positive and negative values can be used here.

See Also

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