search-xt ( addr -- str/f )


Vocabulary
tools.disassembler.utils

Definition
USING: kernel tools.memory ;

IN: tools.disassembler.utils

: search-xt ( addr -- str/f )
dup lookup-return-address dup
[ complete-address ] [ 2drop f ] if ;