From: Helge K. <Hel...@gm...> - 2021-09-08 17:41:10
|
On 08.09.2021 17:45, Tristan Williams wrote: > Hi Helge, > > Glad you got AmForth to build with an atmega328p. > > Can you make avrasm2.exe output a list file, re-build and then check > the list file for lines containing store-i ? > > For the atmega2560 I would expect > > .include "words/store-i.asm" > .include "words/store-i_big.asm" > > For the atmega328p I would expect > > .include "words/store-i.asm" > .include "words/store-i_nrww.asm" Well, the .lss doesn't show the source lines for the atmega2560. But I see atmega2560: dict/nrww.inc(93): Including file 'words/store-i_big.asm' atmega328p: dict/nrww.inc(95): Including file 'words/store-i_nrww.asm' as you expected. Further the core_8k.inc is included for the 256 instead of the core_4k.inc for 328p. Should I send the .lss file (121k) or make it somewhere available? Best regards, Helge |