Search the web
Sign In
New User? Sign Up
win32forth
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12761 - 12790 of 14480   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12761
Can anyone explain why the address of pad changes depending on the operating system? Using the same Win32For.exe: XP 32 bit: pad h. 138020 Vista 64 bit: pad...
Rod Oakford
rodoakford
Offline Send Email
Aug 4, 2007
8:06 am
12762
... operating system? ... using a hard coded value for pad on a different computer. ... now. ... PAD is in the user area (so different tasks have their own),...
George Hubert
georgeahubert
Offline Send Email
Aug 4, 2007
9:49 am
12763
... Pad starts at a uservariable. They are allocated on the returnstack. Various window systems apear to handle the returnstack in a different way. The kernel...
Jos van de Ven
josven2001
Offline Send Email
Aug 4, 2007
10:18 am
12764
... operating system? ... using a hard coded value for pad on a different computer. ... now. ... In Win98 I get pad h. 7B7E90 does that make it a penthouse ?...
George Hubert
georgeahubert
Offline Send Email
Aug 4, 2007
3:14 pm
12765
... the operatin ... when using a ... returnstack. ... different way. ... you're doing. ... You are right, I had not meant to hard code pad but I was surprised...
rodoakford
Offline Send Email
Aug 4, 2007
5:41 pm
12766
... the ... when ... Tryit ... is ... code ... implementation ... The ... Thanks for the reply, there was no need to hard code pad but having done so it took...
rodoakford
Offline Send Email
Aug 4, 2007
5:48 pm
12767
... You're not getting the address of my pad... -- Regards Alex...
Alex McDonald
alextangent
Offline Send Email
Aug 4, 2007
7:06 pm
12768
Is the source code for W32FCONSOLE.DLL avaialble or even a road map to use it? Frank...
Frank J. Russo
fjrusso
Offline Send Email
Aug 6, 2007
4:23 pm
12769
... Install the full packet inluding the extsrc pack. Then you find it in: ~\extsrc\w32fConsole Jos...
Jos van de Ven
josven2001
Offline Send Email
Aug 6, 2007
7:24 pm
12770
... map to ... It has a number of bugs too, especially at line endings and long lines. Use with care. -- Regards Alex...
Alex McDonald
alextangent
Offline Send Email
Aug 7, 2007
3:27 am
12771
... Don't use it directly. Use TYPE EMIT and friends to interact with the console. And take a look at the files in "src\console" to find some more info for the...
Dirk Busch
dirkbuschde
Offline Send Email
Aug 7, 2007
6:27 am
12772
... No criticism intended btw! One of the bugs (inserting characters over the end of a line) appears to have been fixed. It used to insert them "back to...
Alex McDonald
alextangent
Offline Send Email
Aug 7, 2007
7:20 am
12773
... \ Array code CREATE \ ( Returns address of newly named channel. ) dup , ( Stores size of rows from stack to array.) * ( Feeds product of #rows * size...
Frank J. Russo
fjrusso
Offline Send Email
Aug 18, 2007
5:56 pm
12774
Let me be a little more clear what I want is the 'does>' function applied to the array that has been created using malloc DOES> ( member; row -- a-addr ) DUP @...
Frank J. Russo
fjrusso
Offline Send Email
Aug 18, 2007
6:05 pm
12775
... \ Array code CREATE \ ( Returns address of newly named channel. ) dup , * malloc , does> ( member name -- addr ) tuck @ * swap cell+ @ + ; ; 200 20 CHANNEL...
Alex McDonald
alextangent
Offline Send Email
Aug 19, 2007
4:51 am
12776
Thanks Alex. This will work. I do my reallocation - resizing a little different. I first malloc a new larger space and copy exisitng data into the new...
Frank J. Russo
fjrusso
Offline Send Email
Aug 20, 2007
11:49 am
12777
Question on the application of DOES>. I can see what it does. But how is it applied? Maybe that is the wrong question. Here is how I ... \ Array code...
Frank J. Russo
fjrusso
Offline Send Email
Aug 20, 2007
12:12 pm
12778
... I ... definition? ... DOES> applies to the last definition so you cannot insert any definitions (including :NONAME ones) between the create and does>, but ...
George Hubert
georgeahubert
Offline Send Email
Aug 20, 2007
2:57 pm
12779
Used in another version of FORTH. SEG>DESC is not define in Win32Forth ideas on how to accomplish the same thing? Am I correct in assuming I need to load it...
Frank J. Russo
fjrusso
Offline Send Email
Aug 22, 2007
5:16 pm
12780
I have been seaching the web looking for the 486 instruction set and register description. No luck. Anyone got a good reference? The code below will not...
Frank J. Russo
fjrusso
Offline Send Email
Aug 22, 2007
6:05 pm
12781
... Hi Frank, From your two posts, it looks like you're porting code from Rick VanNorman's Forth32. I've worked around in it a bit. Very fast. Also has some...
Thomas Dixon
phenomenaltom
Offline Send Email
Aug 22, 2007
6:50 pm
12782
... and ... Try INTEL. They used to have all the IA32 instruction manuals as PDFs. Also AMD should have the equivalent as well. George...
George Hubert
georgeahubert
Offline Send Email
Aug 22, 2007
8:37 pm
12783
... and ... Try this source: http://www.x86.org/intel.doc/386manuals.htm Dick...
rhb_1807
Offline Send Email
Aug 24, 2007
1:25 am
12784
... This won't run as its 16 bit assembler, and it tries to write characters to the video area, something Windows doesn't allow. Replace it with; ... It won't...
Alex McDonald
alextangent
Offline Send Email
Aug 24, 2007
4:38 am
12785
Hi Frank - If you do end up needing to wade through the Intel manuals, I've recently finished writing an Intel assembler myself and would be glad to help with ...
Michael Clagett
executablemo...
Offline Send Email
Aug 26, 2007
5:11 am
12786
Win32forth is a windows application. Therefore a dc handle has been assigned to it correct? SO how do I access the dc handel it is using? When I write a forth...
Frank J. Russo
fjrusso
Offline Send Email
Aug 27, 2007
10:27 am
12787
... Do you mean you want the hanle of the console? If so then the word you need is CONHNDL George...
George Hubert
georgeahubert
Offline Send Email
Aug 27, 2007
10:56 pm
12788
I believe that is what I am looking for . Thanks George. ... been ... using? ... this,...
Frank J. Russo
fjrusso
Offline Send Email
Aug 28, 2007
10:06 am
12789
Very old thread. New question. What is up with Jeff Fox and UT. I note the store is closed and the site hasnt been updated for a year and I couldn't find an...
M. Simon
msimon6808
Offline Send Email
Aug 28, 2007
2:19 pm
12790
I have been away from FORTH for a while and noticed that Jeff Fox's UT site is dormant. Any one have any news? M. Simon ... Be a better Globetrotter. Get...
M. Simon
msimon6808
Offline Send Email
Aug 28, 2007
2:21 pm
Messages 12761 - 12790 of 14480   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help