The db type
In NBC the db 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 byte keywords.
dseg segment x byte 12 b ubyte 0xE2 test db 0xa0 dseg ends