Data Section
Definitions
define myValue = 255;
//Index No. 0 1 2 3 4 5 6 7 8 9 10
data ( 20, 42, 35, myValue, 1, 100, 0, 86, 255, 11, 2 );
int a, b, c;
main {
a = dbyte(3); //a = 255
b = dchar(3); //b = -1;
c = dword(3); //c = 511;
}Functions
Last updated
Was this helpful?