Matthias Trute <mtr...@web.de> writes:

> Hi Enoch,
>
>> And if I have your ear :-)
>
> You'll (almost) always have it. ;)
>
>> I prefer (gforth): -1 -2 -3 .s <3> -1 -2 -3  ok
>> over (amforth): -1 -2 -3 .s 65533 65534 65535  ok
>> i.e., the regular numbers' format.
>
> Thats fine. Just remove the line in your application
> dict_appl.inc file and add your version of .S
>
> The reason why I use the u. instead of the "standard" .
> is simple: Just switch to HEX. There you have
> the same numbers that can be grepped in the LST and
> MAP files from the assembler and match the numbers
> in the DUMP output (mostly XT's and addresses).
> As I said: .s is a debugging aid for _my_ core
> development. I do not expect that it is unmodified
> useful for other purposes.
>
> Should I mention, that I collect good tools and ideas? ;)

As recommended, removed words/dot-s.asm from dict_appl.inc and added:

: .s  ( -- )                            \ stack picture listing order
    depth
    begin dup while dup pick . 1- repeat
    drop
;

-1 -2 -3 .s
-1 -2 -3  ok

I hope that I'm not nagging -- got more challenges for you if you don't
object ;-)

Regards, Enoch.


>
> Matthias
>
>
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_feb


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
Amforth-devel mailing list for http://amforth.sf.net/
Amforth-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amforth-devel

Reply via email to