opcode-or ( opcode mask -- opcode' )


Vocabulary
cpu.x86.assembler.private

Definition
USING: arrays kernel math sequences ;

IN: cpu.x86.assembler.private

: opcode-or ( opcode mask -- opcode' )
over array?
[ [ unclip-last ] dip bitor suffix ] [ bitor ] if ;