Re: [Amforth] double-precision number to string conversion

2019-02-16 Thread Matthias Trute
Am Samstag, den 16.02.2019, 17:55 +0100 schrieb f.zelders--- via Amforth-devel: > Hello forth-professionals and fellow forth enthousiasts. > > I created a word that converts a positive double-precision number to > an 8 character string like this: > > : dpNumberToString ( d -- address count ) >

Re: [Amforth] double-precision number to string conversion

2019-02-16 Thread Erich Wälde
Hello Fred, f.zelders--- via Amforth-devel writes: > I created a word that converts a positive double-precision number to an 8 > character string like this: > > : dpNumberToString ( d -- address count ) > <# # # # # # # # # #> ; > This works fine for positive numbers. > However I want

[Amforth] double-precision number to string conversion

2019-02-16 Thread f.zelders--- via Amforth-devel
Hello forth-professionals and fellow forth enthousiasts. I created a word that converts a positive double-precision number to an 8 character string like this: : dpNumberToString ( d -- address count ) <# # # # # # # # # #> ; This works fine for positive numbers. However I want to conver