The and instruction implements an AND operation on the specified arguments.
Synopsis
and(type.dst,type.src)
Description
The and instruction implements a bitwise AND operation on the specified arguments. The results are stored in type.dst.
Example
The following example clears the bits not set in FLAG in r.3.
and(r.3,FLAG)