... ok done. I created a new setup with the code from the 6.14 branch. It can be found here: www.schneider-busch.de/dirk/forth/download/w32f61401.exe And I...
15137
Dirk Busch
dirkbuschde
Sep 1, 2010 9:37 am
... well, the IDE seems to be very unstable at the moment. I'm having a lot of crashes, at the moment. Mostly when using the "Find Text in files" command. So...
15138
Dirk Busch
dirkbuschde
Sep 3, 2010 11:17 am
... Hm, I forgot, that w32f is storing absolute file paths in the header. Rebuilding the system during setup is a must at the moment. So the w32f61500.exe...
15139
John Porubek
jporubek
Sep 5, 2010 6:54 pm
I'm having a minor problem running Win32Forth under Linux (using Wine). In the main window, once I get to the bottom of the window, the line to be typed into...
15140
George
georgeahubert
Sep 5, 2010 10:50 pm
... The command to clear the screen is CLS George...
15141
John Peters
brooklineari...
Sep 6, 2010 12:09 am
Try CLS for the command line screen John A. Peters From: win32forth@yahoogroups.com [mailto:win32forth@yahoogroups.com] On Behalf Of John Porubek Sent: Sunday,...
15142
John Porubek
jporubek
Sep 6, 2010 3:30 pm
... George and John, Thanks for the info. Odd that I didn't think to try CLS - that was ingrained in me back in the DOS days. It took me a while to forget that...
15143
P G
psg0912
Sep 7, 2010 12:38 pm
Dear all, So far I have avoided certain words because its easier to get by without using them. One such set is those connected to vocabularies. I know that to...
15144
George
georgeahubert
Sep 7, 2010 7:07 pm
... You might need ALSO at the start to make sure the forth vocabulary is still in the search order. ... french has been removed from the search order, but...
15145
P G
psg0912
Sep 8, 2010 1:58 pm
Hi George, Thanks. I changed it to ( --------------------------------------------------------------------- ) anew zxxy Vocabulary french french Definitions ......
15146
geena_chacko
Sep 13, 2010 2:42 pm
Dear Forth team, I am struggling with an issue in my application development. I do have a rotate dll function, which accepts the degree of rotation, centre of...
15147
Jos v.d.Ven
josven2001
Sep 13, 2010 4:39 pm
Hi Geena, ... Could be the result of not getting all the needed parameters. ... Puts the floating point value in memory and not on the parameter stack and not...
15148
David
robotics1uk
Sep 13, 2010 6:51 pm
Hi Jos where in memory? Can it be fetched out of that memory onto the regular stack? Also, what is the hardware floating point stack? Is that accessible from ...
15149
Jos v.d.Ven
josven2001
Sep 13, 2010 8:09 pm
Hi David, ... The address is at FLOATSP. See float.f for the details. ... Yes, but it might be tricky, since floats may exist in various forms. ... It is a...
15150
geena chacko
geena_chacko
Sep 14, 2010 10:23 am
Dear Jos, Does _pxip8_geotranrotate@44 perhaps need a pointer to the floating point value?, What format should the floating point value have? The function is...
15151
Jos v.d.Ven
josven2001
Sep 14, 2010 11:00 am
Hi Geena, Win32Forth is standard 8 byte for floats. Perhaps SFS>DS will do the trick for you. It pushes a floating point value from floating point stack in...
15152
geena chacko
geena_chacko
Sep 14, 2010 1:33 pm
Dear Jos, Yes i tried that. That is not helping me. I am surprised with the "stack underflow error". Please see the code, and let me know , I am doing anything...
15153
Jos v.d.Ven
josven2001
Sep 14, 2010 1:59 pm
Hi Geena, The code seems to be right. ... xcenter f@ sfs>ds sxy x ! ycenter f@ sfs>ds sxy y ! 1 s>D d>f arb1 f! 1 s>d d>f arb2 f! 98 Sxy 1 2 3 4 5 6 7 \...
15154
geena chacko
geena_chacko
Sep 14, 2010 3:00 pm
Dear Jos, Thanks for the code change I have tried the change in the code, the seven values caused a crash, but when it reached 3 it went with out the underflow...
15155
Jos v.d.Ven
josven2001
Sep 14, 2010 3:31 pm
Hi Geena, When it is a normal number you could use S>D Jos...
15156
Dirk Busch
dirkbuschde
Sep 14, 2010 5:03 pm
... from float.f code FS>DS ( -- dfloat fs: r -- ) \ W32F Floating extra \ *G Move floating point number bits to the data stack as a 64-bit ...
15157
geena chacko
geena_chacko
Sep 15, 2010 11:22 am
Dear All, Thanks a lot,,, it worked with. fs>ds Million thanks Geena Chacko ________________________________ From: Dirk Busch <dirk.yahoo@...> ...
15158
P G
psg0912
Sep 17, 2010 2:05 pm
Hi Everyone, I wrote ( example 1) below using ints and it works, so I changed it to floats ( example 2) which is what I was interested in, and it failed. ...
15159
Jos v.d.Ven
josven2001
Sep 17, 2010 4:20 pm
Hi Prad, Some untested comment: Try floats instead of cells in the second example. Jos ... floats ( ... in class/objects ? ... cr mxn 0 do i ... ] literal...
15160
George
georgeahubert
Sep 17, 2010 8:34 pm
... An alternative would be to use SF@ and SF! so that the array holds 32bit floats. George...
15161
John Peters
brooklineari...
Sep 23, 2010 2:47 pm
Dear win32forth group, How does one simply save a current system as an exe? John A. Peters, Owner, Brookline Electric Co 415-239-5393 Office 415-509-3599 Cell ...
15162
josven2001
Sep 24, 2010 10:16 am
Hi John, Extend.f uses: ' ForthBoot SAVE Win32for Other ways are explainned in imageman.f Jos...
15163
Yves
ysur2004
Sep 28, 2010 7:32 am
Hi all As you may remember, I am still using v4 for its ability to build DLLs. I am facing a multithreading problem for which I have already spent hours. Here...
15164
George
georgeahubert
Sep 28, 2010 8:36 pm
... The User Area grows up in memory while the return stack grows down, so they're occupying the same area of memory, which might be the problem. Since windows...
15165
Yves
ysur2004
Sep 28, 2010 9:16 pm
Hi George Thanks for the answer ... I do not hink I understand "commit", "mark the top page" and "guard page"... Is 4096 bytes not largely sufficient for both...