The dw type
In NBC the dw type is an unsigned 16-bit value. This type can store values from zero to UINT_MAX. You can also define an unsigned 16-bit variable using the uword or word keywords.
dseg segment
x word 0xfff0
y uword 62450
z dw 48500
dseg ends
1.6.2