OR (binary)

From veswiki
Revision as of 21:23, 16 November 2012 by E5frog (talk | contribs) (1 revision)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

To OR one value with another is to compare the bits of each value, and keep the ones which are true in either value. For example, if you OR'd these values:

    %01100100
    %00101110

You would get:

    %01101110

Because those bits are true in either the first value, or the second one. The F8 can only OR two bytes at a time.

See Also