ubyte

The ubyte type

In NBC the ubyte 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 byte or db keywords.

  dseg segment
    x byte 12
    b ubyte 0xE2
    test db 0xa0
  dseg ends

Generated by  doxygen 1.6.2