This program emulates an 8-bit AVR microcontroller. It supports the trivial C "Hello World!" program.
Given some C++ source.
```cpp
int main() { DDRB |= _BV(PB6);
for(uint8t i=0; i<5; i++) { PORTB |= _BV(PB6); _delayms(500);
PORTB &= ~_BV(PB6);
_delay_ms(500);
}
return 0; } ```
```bash
avr-g++ helloworld.c -DFCPU=8000000 -mmcu=atmega328p -O2 -o hello_world.o
avr-objcopy -I elf32-avr -O binary helloworld.o helloworld.bin
cargo run hello_world.bin ```