Re: [Amforth] 16/32 Bit Fetch & Store.

2018-10-19 Thread Matthias Trute
Am Freitag, den 19.10.2018, 14:46 +0200 schrieb Tristan: > Hello Martin, > > Very intriguing, just when I am away from my machine so I can’t test > things out! > > If I remember correctly, the default Amforth avr build uses (rx,tx) > interrupts to handle the serial prompt. If at the serial prompt

Re: [Amforth] Setting of the fuses Arduino Ono

2018-10-19 Thread Dimitri Georganas
It's a bit more complicated. avrdude switches values between fuses when reporting them (bug?) and when you see 0x07 where you expect to see 0xFF at the extended fuse that's okay (at least for atmega 328p). You only need to change lfuse into 0xE2 to disable downscaling to 1MHz and leave the rest at

Re: [Amforth] 16/32 Bit Fetch & Store.

2018-10-19 Thread Tristan
Hello Martin, Very intriguing, just when I am away from my machine so I can’t test things out! If I remember correctly, the default Amforth avr build uses (rx,tx) interrupts to handle the serial prompt. If at the serial prompt I type in the word -int and “all” -int did was to issue the assemble

Re: [Amforth] 16/32 Bit Fetch & Store.

2018-10-19 Thread Martin Nicholas via Amforth-devel
On Wed, 17 Oct 2018 13:27:09 +0100 Tristan Williams wrote: > On 17Oct18 10:25, Martin Nicholas via Amforth-devel wrote: > > Hi, > > > > I think that @ ! +! 2@ 2! d+! should disable interrupts on the AVR. > > Although it's possible to code around a variable being changed by an > > interrupt (usin