| |
|
| true [IF] \ !! don't know what to put here |
true [IF] \ !! don't know what to put here |
| : dodoes: ( -- addr ) \ gforth |
: dodoes: ( -- addr ) \ gforth |
| \G The code address of a @code{field}??? |
\G The code address of a @code{DOES>}-defined word. |
| |
\ DOES> is interpret/compile: but cross' ['] gives the address of |
| |
\ a DOES>-defined word |
| ['] DOES> >code-address ; |
['] DOES> >code-address ; |
| |
|
| [THEN] |
[THEN] |
| |
|
| |
|
| \G The code address of a @code{ABI-CODE} definition. |
\G The code address of a @code{ABI-CODE} definition. |
| ['] (abi-code-dummy) >code-address ; |
['] (abi-code-dummy) >code-address ; |
| [THEN] |
[THEN] |
| |
|
| |
doer? :do;abicode [IF] |
| |
(;abi-code) (;abi-code-dummy) |
| |
: do;abicode: ( -- addr ) |
| |
['] (;abi-code-dummy) >code-address ; |
| |
[THEN] |