Sign in

username or email:

password:



Not a member?
Forgot your Password?

Search msp430



Search tips

Subscribe to msp430



Discussion Groups

See Also

DSPFPGA

Discussion Groups | MSP430 | urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 )

The purpose of this group is to foster exchange of information on the Texas Instruments MSP430 family of microcontrollers and related tools. Everyone welcome, all levels of familiarity/expertise.


So far in May, you have voted 0 times ou of a total of 20 votes by the community.
Please help us clean the archives from unuseful discussion threads by using the voting system! Details here.


Is this thread worth a thumbs up?

+1

urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - holi - Jul 19 22:45:52 2012

hi, Forther.
Recently I'm trying to convert the platfortm of developping
assembler/disassembler/decompiler/xcompiler from win32for42671 to win32for61400.
Due to the differences between the two system, some of the program have to be
modified to fit the requirement of the new system.
So, here is one or the least problem that has to be overcomed.
A counted string, such as the one DUP which has already been defined in the
dictionary , has to find it's cfa (code field address).
-----------------------
The old program runs fine in win3242671:

see. string>cfa
: STRING>CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ; ok
-----------------------
in the new one win32for61400:
: STRING>CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ;
^^^^^^^^^^
Warning(-4104): ?UPPERCASE is a *** deprecated *** word (see
src\compat\evolve.f)
^^^^^^^^^^
Warning(-4101): ?UPPERCASE is a system word in an application word
^^^^^^
Error(-13): (FIND) is undefined
I need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) to upgrade
the development system to win32for61400.
-----------------------
I've been developping assembler/disassembler/compiler/xcompiler for various microcomputers, such as psp430, ARM7, pic, 8051..., under win32for42671. Now that I wish to switch to win32for61400.
Thanks. holi ¦N





(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )

Re: urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - John Porubek - Jul 20 12:06:23 2012

Holi,

Since this is a Win32Forth question, you're much more likely to get a
useful response by posting your question to the Win32Forth group.

http://groups.yahoo.com/group/win32forth/

Hope that helps,

--John

On Thu, Jul 19, 2012 at 10:45 PM, holi wrote:

> hi, Forther.
> Recently I'm trying to convert the platfortm of developping
> assembler/disassembler/decompiler/xcompiler from win32for42671 to
> win32for61400.
> Due to the differences between the two system, some of the program have t
o
> be
> modified to fit the requirement of the new system.
> So, here is one or the least problem that has to be overcomed.
> A counted string, such as the one DUP which has already been defined in t
he
> dictionary , has to find it's cfa (code field address).
> -----------------------
> The old program runs fine in win3242671:
>
> see. string>cfa
> : STRING>CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ; ok
> -----------------------
> in the new one win32for61400:
> : STRING>CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ;
> ^^^^^^^^^^
> Warning(-4104): ?UPPERCASE is a *** deprecated *** word (see
> src\compat\evolve.f)
> ^^^^^^^^^^
> Warning(-4101): ?UPPERCASE is a system word in an application word
> ^^^^^^
> Error(-13): (FIND) is undefined
> I need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) to upgra
de
> the development system to win32for61400.
> -----------------------
> I've been developping assembler/disassembler/compiler/xcompiler for
> various microcomputers, such as psp430, ARM7, pic, 8051..., under
> win32for42671. Now that I wish to switch to win32for61400.
> Thanks. holi ¦N
>
>



(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )

Re: urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - chang luke - Jul 22 6:21:17 2012

    Thanks for the suggestion. 
    By the way I'd like to post it here just to try to appeal people to know there're many other Forth systems being developped in the woeld.  Such as:
  ******** choose one ********
0                                     tinyForth(stc) only   ( 9800~9fff ) for 32k up flash , T in Ra
1                                     tinyForth(stc) only   ( d800~dfff ) for 16k up flash , T in Ra
2                                     tinyForth(stc) only   ( f800~ffff ) for  2k up flash , T in Ra
3              msp430f1611eForth(dtc)+tinyForth(dtc)        ( a000~dfff ) for 32k up flash
4          msp430f1611camelForth(itc)+tinyForth(itc)        ( e000~fa13 ) for  8k up flash , T in R7
5
6        msp430g2553mecrispForth(stc)+tinyForth(stc)ledcomm ( d800~ffff ) for 16k up flash
7
8                                     tinyForth(stc) only   ( c800~cfff ) for  2k up flash , T in Ra
9                                     tinyForth(stc) only   ( d000~d7ff ) for  2k up flash , T in Ra
other key  msp430g2553camelForth(itc)+tinyForth(itc)        ( c000~ffff ) for 16k up flash , T in R7
 
there're forur msp430Forth system out there where we can choose from.       
    The problem has been solved by Albert Lu.   
  
in win32for61400
 
Thank anyway. 
                                                                                                                                  holi
 
________________________________
寄件者: John Porubek
收件者: m...
寄件日期: 2012/7/21 (週六) 12:06 AM
主旨: Re: [msp430] urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 )
 
Holi,

Since this is a Win32Forth question, you're much more likely to get a
useful response by posting your question to the Win32Forth group.

http://groups.yahoo.com/group/win32forth/

Hope that helps,

--John

On Thu, Jul 19, 2012 at 10:45 PM, holi wrote:

> hi, Forther.
> Recently I'm trying to convert the platfortm of developping
> assembler/disassembler/decompiler/xcompiler from win32for42671 to
> win32for61400.
> Due to the differences between the two system, some of the program have t
o
> be
> modified to fit the requirement of the new system.
> So, here is one or the least problem that has to be overcomed.
> A counted string, such as the one DUP which has already been defined in t
he
> dictionary , has to find it's cfa (code field address).
> -----------------------
> The old program runs fine in win3242671:
>
> see. string>cfa
> : STRING>CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ; ok
> -----------------------
> in the new one win32for61400:
> : STRING>CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ;
> ^^^^^^^^^^
> Warning(-4104): ?UPPERCASE is a *** deprecated *** word (see
> src\compat\evolve.f)
> ^^^^^^^^^^
> Warning(-4101): ?UPPERCASE is a system word in an application word
> ^^^^^^
> Error(-13): (FIND) is undefined
> I need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) to upgra
de
> the development system to win32for61400.
> -----------------------
> I've been developping assembler/disassembler/compiler/xcompiler for
> various microcomputers, such as psp430, ARM7, pic, 8051..., under
> win32for42671. Now that I wish to switch to win32for61400.
> Thanks. holi å‰
>
>



(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )

Re: urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - Donald H - Jul 22 15:15:54 2012

CgowwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDCoMKgwqDC
oMKgwqDCoMKgwqDCoMKgwqDCoAoKCkRvZXMgYW55b25lIGtub3cgd2hlcmUgdGhpcyAic3R1
ZmYiIGNvbWVzIGZyb20gPz8KCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LQoKVG8gdW5zdWJzY3JpYmUgZnJvbSB0aGUgbXNwNDMwIGdyb3VwLCBzZW5kIGFuIGVtYWls
IHRvOgptc3A0MzAtdW5zdWJzY3JpYmVAZWdyb3Vwcy5jb20KCllhaG9vISBHcm91cHMgTGlu
a3MKCjwqPiBUbyB2aXNpdCB5b3VyIGdyb3VwIG9uIHRoZSB3ZWIsIGdvIHRvOgogICAgaHR0
cDovL2dyb3Vwcy55YWhvby5jb20vZ3JvdXAvbXNwNDMwLwoKPCo+IFlvdXIgZW1haWwgc2V0
dGluZ3M6CiAgICBJbmRpdmlkdWFsIEVtYWlsIHwgVHJhZGl0aW9uYWwKCjwqPiBUbyBjaGFu
Z2Ugc2V0dGluZ3Mgb25saW5lIGdvIHRvOgogICAgaHR0cDovL2dyb3Vwcy55YWhvby5jb20v
Z3JvdXAvbXNwNDMwL2pvaW4KICAgIChZYWhvbyEgSUQgcmVxdWlyZWQpCgo8Kj4gVG8gY2hh
bmdlIHNldHRpbmdzIHZpYSBlbWFpbDoKICAgIG1zcDQzMC1kaWdlc3RAeWFob29ncm91cHMu
Y29tIAogICAgbXNwNDMwLWZ1bGxmZWF0dXJlZEB5YWhvb2dyb3Vwcy5jb20KCjwqPiBUbyB1
bnN1YnNjcmliZSBmcm9tIHRoaXMgZ3JvdXAsIHNlbmQgYW4gZW1haWwgdG86CiAgICBtc3A0
MzAtdW5zdWJzY3JpYmVAeWFob29ncm91cHMuY29tCgo8Kj4gWW91ciB1c2Ugb2YgWWFob28h
IEdyb3VwcyBpcyBzdWJqZWN0IHRvOgogICAgaHR0cDovL2RvY3MueWFob28uY29tL2luZm8v
dGVybXMvCgo

(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )

Re: urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - Matthias Weingart - Aug 7 10:35:51 2012

"Donald H" :

>
> 0                                   
>
> Does anyone know where this "stuff" comes from ??

Frame character in a chinese font?

M.





(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )

Re: urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - Jim Higgins - Aug 7 17:56:35 2012

Received from Matthias Weingart at 08/07/12 14:35 UTC:

>"Donald H" :
>
> >
> > 0Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
                 Â
> >
> > Does anyone know where this "stuff" comes from ??
>
>Frame character in a chinese font?
>
>M.

It's a non-breaking space in the original email. It occurs when the person
writing the email uses an editor that uses Unicode character encoding or
contains Unicode characters, but the resulting email is not sent with Unicode
(typically UTF-8) declared as the character encoding used... or if the
receiving email program doesn't understand UTF-8. Usually it's a matter of
the sending program not properly declaring Unicode (UTF-8)
content. Offending email clients include MS products and the email clients
on most smart phones.

A common example causing this would be using MS Word as the editor to compose
an email sent with an email client that declares the content to be ISO-8859-1
or Windows-1252 character encoding instead of UTF-8. That or the sender is
cutting and pasting from a document created in Word or other editor that uses
Unicode as its internal character encoding into a message using IS0-8859-1 or
Windows-1252 encoding. Such messages should be sent/replied/forwarded using
UTF-8 encoding, but several broken email clients don't do that - MS products,
and most smart phones most notably - so those non-breaking spaces wind up
looking like "Â". It's also caused by forwarding such emails, whether
properly declared as UTF-8 originally or not, without redeclaring them to be
UTF-8 encoded.

A simplistic solution everyone can implement is to stop
sending/replying/forwarding email in HTML (or Rich Text as MS calls it)
format. Send plain text only.

Jim H





(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )

Re: urgently need the help to design string>cfa ( a len -- cfa -1 | xxx 0 ) - holi...@yahoo.com.tw - Sep 1 2:17:00 2012

hi,
For those of you who are interested in 4e4th camelForth development system you can download the program 99.exe or 99.lst to use or study.

tech.groups.yahoo.com/group/armForth/files/msp430/99.exe

99.exe
flash m <-- send program to flash memory.
9.6k

hi, Forther.
> Recently I'm trying to convert the platfortm of developping
>assembler/disassembler/decompiler/xcompiler from win32for42671 to win32for6>1400.
>Due to the differences between the two system, some of the program have to >be
>modified to fit the requirement of the new system.
>So, here is one or the least problem that has to be overcomed.
>A counted string, such as the one DUP which has already been defined in the
>dictionary , has to find it's cfa (code field address).
>-----------------------
>The old program runs fine in win3242671:
>
>see. string> cfa
>: STRING> CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ; ok
>-----------------------
>in the new one win32for61400:
>: STRING> CFA FIND-BUFFER PLACE FIND-BUFFER ?UPPERCASE (FIND) ;
>^^^^^^^^^^
>Warning(-4104): ?UPPERCASE is a *** deprecated *** word (see
>src\compat\evolve.f)
>^^^^^^^^^^
>Warning(-4101): ?UPPERCASE is a system word in an application word
>^^^^^^
>Error(-13): (FIND) is undefined
>I need the help to design string> cfa ( a len -- cfa -1 | xxx 0 ) to upgrade
>the development system to win32for61400.
>-----------------------
> I've been developping assembler/disassembler/compiler/xcompiler for vari>ous microcomputers, such as psp430, ARM7, pic, 8051..., under win32for4267>1. Now that I wish to switch to win32for61400.
> Thanks. holi ¦N
>
>




(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )