From: Jan K. <kro...@ho...> - 2012-06-16 10:40:29
|
Dear Michael, It is working, but missing the word @i. Will try to find out how to implement. Can you try to do it with bitnames.frt for me please. There happens things I dont know how to solve. For the rest it is a great tool. I try to make of my words assemblies, so when I flash they are direct availableI Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 14 jun. 2012 om 21:27 heeft Kalus Michael <mik...@go...> het volgende geschreven: > Hi Jan. > > > Am 14.06.2012 um 07:53 schrieb Jan Kromhout: > >> Hi Michael, >> >> Thanks for this! >> Have two questions >> 1. Is this also working for the 4.8 version > > There was a mayor change in the way the headers where build between > amforth-2.9 and amforth-3.1. As far as I know that is stable since > then, so G4 should work for amforth-4.8 too. May be there are some > new amforth words which are not included jet to G4. If you notice > such a word please drop me a line. > >> 2. Can I used it with Win32for compiler under windows? > > I never tryed this. > > Michael > > > > >> >> Cheers, >> >> Jan kromhout >> Sacharovlaan 3 >> 3223HM Hellevoetsluis-NL >> >> Op 14 jun. 2012 om 00:25 heeft Kalus Michael >> <mik...@go...> het volgende geschreven: >> >>> Hi Jan. >>> >>> I would add the word to amforth-x.x/appl/myproject/words/uitvoer.asm >>> and append them in dict_appl.inc in the way words are included there: >>> >>> .. >>> .include "words/uitvoer.asm" ; my first assembled forth word >>> .. >>> >>> >>> Did you take a look at >>> http://www.forth-ev.de/repos/g4/ >>> allready? g4.fs is a plain_forth to amforth_assembler translater >>> written in gforth. >>> >>> You may enter your word in this way: >>> >>> : uitvoer cr cr ." Dit is mijn eerste test " ; >>> >>> and get this as result: >>> >>> VE_UITVOER: >>> .dw $FF07 >>> .db "uitvoer",0 >>> .dw VE_HEAD >>> .set VE_HEAD = VE_UITVOER >>> XT_UITVOER: >>> .dw DO_COLON >>> PFA_UITVOER: >>> .dw XT_CR >>> .dw XT_CR >>> .dw XT_SLITERAL >>> .dw $18 >>> .db "Dit is mijn eerste test " >>> .dw XT_ITYPE >>> .dw XT_EXIT >>> >>> ok >>> >>> Have fun. :) >>> Michael >>> >>> >>> >>> >>> >>> Am 13.06.2012 um 22:20 schrieb Jan Kromhout: >>> >>>> Hello, >>>> >>>> I have make a word to include in amForth. >>>> Where should I store it so it will be assembled? >>>> >>>> Thanks for any help. >>>> >>>> Cheers, >>>> >>>> Jan Kromhout >>>> >>>> >>>> >>>> ; uitvoer ( -- ) >>>> ; ================================================= >>>> ; Date : 13.06.2012 >>>> ; version 1.00 >>>> ; User written word >>>> ; write a simple text, and do further notting >>>> ; ================================================= >>>> VE_UITVOER: >>>> .dw $ff07 >>>> .db "uitvoer",0 >>>> .dw VE_HEAD >>>> .set VE_HEAD = VE_UITVOER >>>> XT_UITVOER: >>>> .dw DO_COLON >>>> PFA_UITVOER: >>>> .dw XT_CR >>>> .dw XT_CR >>>> .dw XT_SLITERAL >>>> .dw 24 >>>> .db "Dit is mijn eerste test " >>>> .dw XT_ITYPE >>>> .dw XT_EXIT >>>> >>>> >>>> -------------------------------------------------------------------- >>>> -- >>>> -------- >>>> Live Security Virtual Conference >>>> Exclusive live event will cover all the ways today's security and >>>> threat landscape has changed and how IT managers can respond. >>>> Discussions >>>> will include endpoint security, mobile security and the latest in >>>> malware >>>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >>>> _______________________________________________ >>>> Amforth-devel mailing list for http://amforth.sf.net/ >>>> Amf...@li... >>>> https://lists.sourceforge.net/lists/listinfo/amforth-devel >>> >>> >>> --------------------------------------------------------------------- >>> --------- >>> Live Security Virtual Conference >>> Exclusive live event will cover all the ways today's security and >>> threat landscape has changed and how IT managers can respond. >>> Discussions >>> will include endpoint security, mobile security and the latest in >>> malware >>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >>> _______________________________________________ >>> Amforth-devel mailing list for http://amforth.sf.net/ >>> Amf...@li... >>> https://lists.sourceforge.net/lists/listinfo/amforth-devel >>> >> >> ---------------------------------------------------------------------- >> -------- >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. >> Discussions >> will include endpoint security, mobile security and the latest in >> malware >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> Amforth-devel mailing list for http://amforth.sf.net/ >> Amf...@li... >> https://lists.sourceforge.net/lists/listinfo/amforth-devel > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Amforth-devel mailing list for http://amforth.sf.net/ > Amf...@li... > https://lists.sourceforge.net/lists/listinfo/amforth-devel > |