The byte type
In NBC the byte type is an unsigned 8-bit value. This type can store values from zero to UCHAR_MAX. You can also define an unsigned 8-bit variable using the ubyte or db keywords.
dseg segment
x byte 12
b ubyte 0xE2
test db 0xa0
dseg ends
1.6.2