bigforth-devel Mailing List for bigFORTH+MINOS
Brought to you by:
paysan
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Rene H. <reh...@t-...> - 2016-09-09 07:56:14
|
Seems my processor is simply not supported. René Hartmann Am 06.09.2016 um 21:38 schrieb Rene Hartmann: > Hi, > > I tried to build bigForth on Ubuntu 16.04 (i686 Athlon), but no success. > > Invocation of ./forthker-linux -e include startup.fb ' .blk is .status > warning on savesystem' segfaults. > > Investigating the core file with gdb does not provide any information. > > Any ideas how to get it working? > > -- > René Hartmann |
From: Rene H. <reh...@t-...> - 2016-09-06 19:38:39
|
Hi, I tried to build bigForth on Ubuntu 16.04 (i686 Athlon), but no success. Invocation of ./forthker-linux -e include startup.fb ' .blk is .status warning on savesystem' segfaults. Investigating the core file with gdb does not provide any information. Any ideas how to get it working? -- René Hartmann |
From: David K. <dvd...@gm...> - 2011-03-30 20:33:04
|
>>>>> "Bernd" == Bernd Paysan <ber...@gm...> writes: > Am Sonntag, 27. März 2011, 13:20:57 schrieb David Kuehling: >> - The bigger problem is, that '(SAVE' doesn't seem to exist nowadays, >> and I don't know how to replace it. How do I specify the word to >> execute at startup? The cleanest solution would be something like >> 'bootmessage' in Gforth, for initializating Brainless, since >> afterwards Brainless uses the Forth terminal anyways. > The way to go is to use the module system. > module brainless include brainless.fs main: go ; module; Ok, I now have a somewhat working .exe version of Brainless. Not completely stable yet (think I still missed a few ! and LITERAL that need to be converted to A!, ALITERAL). Next problem: windows consoles do not have ansi escape sequence support (and bigforth does not support the windows syscalls for console colors?) Hmm, what is the simplest way to draw the chessboard in color then? Does the xbigforth dialog window help here? Or is it easier to open another minos window that shows the chessboard as a matrix of characters, and use the dialog for command entry (moves) only? I noticed that the xbigforth dialog window does not suppor the unicode chess glyphs (♙♘♗♖♕♔, ♟♞♝♜♛♚). How are my chances to make them work? cheers, David -- GnuPG public key: http://user.cs.tu-berlin.de/~dvdkhlng/dk.gpg Fingerprint: B17A DC95 D293 657B 4205 D016 7DEF 5323 C174 7D40 |
From: David K. <dvd...@gm...> - 2011-03-27 17:48:34
|
>>>>> "Bernd" == Bernd Paysan <ber...@gm...> writes: > Am Sonntag, 27. März 2011, 13:20:57 schrieb David Kuehling: >> Hi, >> >> I'm just trying to turn the brainless chess playing game [1] into a >> windows turnkey application using bigforth-2.4.0. Stumbled into two >> problems so far: >> >> - Default search path searches bigforth's library directories before >> '.', so it does not load 'environ.fs' which is part of my project but >> is shadowed by a file of the same name in the bigforth library >> directory. > Is this really the case? The default search path starts with ., and > when I put an "environ.fs" into the current directory, it loads from > there. For the linux version you're right. In the windows version, the default setting after installation resulted in Path ";C:\Program Files\bigforth;." > The way to go is to use the module system. [..] Ok, going to give this a try, >> BTW on Linux, bigforth is still about 30% faster than Gforth-64bit >> for the Brainless benchmark. Probably Gforth bloats code too much >> and relies too much on the (too small) BTB. > Both. It's rather the other way round: Being only 30% slower than > bigForth is a huge achievement of Gforth's approach. Well, I think I remember Anton claiming, Gforth were faster in his micro-benchmarks. Just wanted to point out, that Gforth doesn't fare so well under real-world condidtions :) cheers, David -- GnuPG public key: http://user.cs.tu-berlin.de/~dvdkhlng/dk.gpg Fingerprint: B17A DC95 D293 657B 4205 D016 7DEF 5323 C174 7D40 |
From: Bernd P. <ber...@gm...> - 2011-03-27 11:36:37
|
Am Sonntag, 27. März 2011, 13:20:57 schrieb David Kuehling: > Hi, > > I'm just trying to turn the brainless chess playing game [1] into a > windows turnkey application using bigforth-2.4.0. Stumbled into two > problems so far: > > - Default search path searches bigforth's library directories before > '.', so it does not load 'environ.fs' which is part of my project but > is shadowed by a file of the same name in the bigforth library > directory. Is this really the case? The default search path starts with ., and when I put an "environ.fs" into the current directory, it loads from there. > I cannot override the search-path using 'setpath', since it is not > part of the default search-order, and i didn't find out where it > hides :/ path is in the default search order, setpath is in DOS. > Had to hand-fix bigforth.ini for now, but this is somewhat > an ugly solution. > > - The bigger problem is, that '(SAVE' doesn't seem to exist nowadays, > and I don't know how to replace it. How do I specify the word to > execute at startup? The cleanest solution would be something like > 'bootmessage' in Gforth, for initializating Brainless, since > afterwards Brainless uses the Forth terminal anyways. The way to go is to use the module system. module brainless include brainless.fs main: go ; module; > BTW on Linux, bigforth is still about 30% faster than Gforth-64bit for > the Brainless benchmark. Probably Gforth bloats code too much and > relies too much on the (too small) BTB. Both. It's rather the other way round: Being only 30% slower than bigForth is a huge achievement of Gforth's approach. -- Bernd Paysan "If you want it done right, you have to do it yourself" http://www.jwdt.com/~paysan/ |
From: David K. <dvd...@gm...> - 2011-03-27 11:21:10
|
Hi, I'm just trying to turn the brainless chess playing game [1] into a windows turnkey application using bigforth-2.4.0. Stumbled into two problems so far: - Default search path searches bigforth's library directories before '.', so it does not load 'environ.fs' which is part of my project but is shadowed by a file of the same name in the bigforth library directory. I cannot override the search-path using 'setpath', since it is not part of the default search-order, and i didn't find out where it hides :/ Had to hand-fix bigforth.ini for now, but this is somewhat an ugly solution. - The bigger problem is, that '(SAVE' doesn't seem to exist nowadays, and I don't know how to replace it. How do I specify the word to execute at startup? The cleanest solution would be something like 'bootmessage' in Gforth, for initializating Brainless, since afterwards Brainless uses the Forth terminal anyways. Here is the non-working code I'm using: bigforth=c:/Program\ Files/bigforth/bigforth.exe wine "$bigforth" -e 'path' ./brainless.fs \ -e ': GO tui-startup QUIT ; ' \ -e ': (SAVE r> GO (SAVE >r ; ' \ -e 'SAVESYSTEM brainless CR BYE' BTW on Linux, bigforth is still about 30% faster than Gforth-64bit for the Brainless benchmark. Probably Gforth bloats code too much and relies too much on the (too small) BTB. cheers, David -- GnuPG public key: http://user.cs.tu-berlin.de/~dvdkhlng/dk.gpg Fingerprint: B17A DC95 D293 657B 4205 D016 7DEF 5323 C174 7D40 [1] http://sourceforge.net/projects/forth-brainless/ |
From: Bernd P. <ber...@gm...> - 2010-03-22 22:50:28
|
The version 2.4.0 from 22mar2010 contains more ports, more Forth 200x features: * MINOS port to VFX completed - for Linux and X11. * stability improvements in Theseus. * port to FreeBSD added - and improved port for Mac OS X (better signal handling). * Forth200x features: X:ekeys, test suite for Xchars passed, X:defer * more standard output on ~~, helps emacs find the location * Wurstkessel cryptography example added * other bugfixes -- Bernd Paysan "If you want it done right, you have to do it yourself" http://www.jwdt.com/~paysan/ |
From: Bernd P. <ber...@gm...> - 2010-01-06 11:03:16
|
Am Mittwoch 06 Januar 2010 09:44:08 schrieb Robert Epprecht: > The home page says "bigFORTH is a 32 bit system". > Is there a 64 bit version? Short and simple answer: no. -- Bernd Paysan "If you want it done right, you have to do it yourself" http://www.jwdt.com/~paysan/ |
From: Robert E. <epp...@so...> - 2010-01-06 07:38:20
|
The home page says "bigFORTH is a 32 bit system". Is there a 64 bit version? Robert Epprecht |
From: Bernd P. <ber...@gm...> - 2009-12-31 17:49:19
|
These two lists are replacements for the ChaosSolutions.org mailing lists for bigFORTH and MINOS. ChaosSolutions.org served us well for a decade, I hope these lists will be good enough for another decade. -- Bernd Paysan "If you want it done right, you have to do it yourself" http://www.jwdt.com/~paysan/ |