[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[avr-gcc-list] New AVR simulator
From: |
Anich Gregor |
Subject: |
[avr-gcc-list] New AVR simulator |
Date: |
Wed, 23 Jun 2004 23:15:45 +0200 |
User-agent: |
KMail/1.6.1 |
Hi!
I have spent the last few days working on an AVR simulator which I have
started from scratch (written in C)
At the moment it can run as a gdb server (like simulavr), no other interface
is implemented. Most instructions are implemented and there are some basic
I/O modules for ports (which does nothing else but save PORTX and DDRX values
and provide PINX as 0x00), timers and the UART.
Interrupts are implemented but not really tested, the gdb server is mostly
complete but has some parts missing.
The UART I/O module will use the host's RS232 or a named pipe for
communication.
There is also some code which will try to run the AVR in real-time (which will
not work well with high frequencies because then the resolution of the timing
will be too low)
Maybe someone wants to test it and tell me what they think of it? :-)
You can download it here:
http://navijr.deltaanime.net/~blight/avrsim/avrsim-0.1.0.tar.gz
Feel free to let me know if you have some idea for the simulator!
--blight