addressing? ( object -- ? )


Vocabulary
cpu.arm.assembler.private

Inputs and outputs
objectan 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.assembler.private

: addressing? ( object -- ? )
dup tuple?
[ layout-of 7 slot \ addressing eq? ] [ drop f ] if ;