The sizeof function
The sizeof(arg) compiler function returns the size of the variable you pass into it. The syntax of the sizeof function is shown below.
dseg segment arg byte argsize byte dseg ends // ... set argsize, sizeof(arg) // argsize == 1