-
While compiling an emulator named "Simavr" through emscripten with the intention of porting it to web, came across with certain types of errors which got rectified even but have stuck with an issue, w…
-
I haven't got my AVR around at the moment, but all the information I can find implies that the Z register is copied directly into PC, but this code shifts it left by 1:
https://github.com/buserror/…
-
I'm using `simavr` on Fedora 28, x86_64, using avr-gcc 7.2.0. My `simavr` repository is at commit b3a8e8f. I've added the following to my code to try to generate traces for various attiny85 pins:
`…
-
Latest build is tested on real hardware? SCORE is updated properly?
I use your game for simavr-arduboy testing at the moment and it seems what game speed now looks good.
But now SCORE is not updated…
-
Current Makefile use dynamic linking, so before we can run `sim_arduboy`, compiled libsimavr library should be installed to system, because at least Ubuntu 18.04 still have outdated libsimavr package…
-
I'm running one of the examples for the atmega328 MCU and everything booted up fine in simavr. However when I tried to remote debug with gdb, I get a "Reply contains invalid hex digit 59" and the conn…
-
- [ ] Keyboard based menu
- [ ] Recently used elements
- [ ] Realistic models' values
- [ ] Components' stress testing
- [ ] FFT in cartesian like diagram without using the equation
- [ ] Live graphin…
-
just fix:
#ifndef __AVR_ATmega32u4__
#define __AVR_ATmega32u4__
#endif
to
#ifndef __AVR_ATmega32U4__
#define __AVR_ATmega32U4__
#endif
in simavr/cores/sim_mega32u4.c
(change lower c…
-
Hi,
I'm so happy to have found simavr as I've wanted something like it for quite some time.
I've used it to write testing for my firmware, which is a great relief.
To help the development proce…
-
```
wenhui-2:sim WenhuiZhang$ brew link gcc@4.8
Linking /usr/local/Cellar/gcc@4.8/4.8.4... 25 symlinks created
wenhui-2:sim WenhuiZhang$ brew install --HEAD osx-cross/avr/simavr
==> Installing sim…