The uword type
In NBC the uword 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 word or dw keywords.
dseg segment x word 0xfff0 y uword 62450 z dw 48500 dseg ends