addressing? ( object -- ? ) (original) (raw)
Vocabulary
cpu.arm.32.assembler.private
Inputs and outputs
object | an object |
---|---|
? | a boolean |
Word description
Tests if the object is an instance of the addressing class.
Definition
USING: classes.tuple.private kernel slots.private ;
IN: cpu.arm.32.assembler.private
: addressing? ( object -- ? )
dup tuple?
[ layout-of 7 slot \ addressing eq? ] [ drop f ] if ;