diff --git a/README.md b/README.md deleted file mode 100644 index 97a4116..0000000 --- a/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# AVR Playground - -[QEMU AVR Docs](https://www.qemu.org/docs/master/system/target-avr.html) - -```bash -sudo dnf install avr-binutils avr-libc avr-gcc avr-gcc-c++ avrdude qemu-system-avr -``` diff --git a/makefile b/makefile index 5a7ee9f..272b3ff 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,6 @@ PROGRAMMER = usbasp # MCU MCU = atmega328p -QEMU_MACHINE_NAME = uno # Compiler flags CFLAGS = -std=c99 -Wall -Wno-array-bounds -mmcu=$(MCU) -DF_CPU=16000000UL -O3 @@ -39,10 +38,6 @@ $(TARGET).hex: $(TARGET).elf flash: $(TARGET).hex avrdude -p $(MCU) -c $(PROGRAMMER) -U flash:w:$(TARGET).hex -# Run the program in QEMU -qemu: $(TARGET).elf - qemu-system-avr -machine $(QEMU_MACHINE_NAME) -bios $(TARGET).elf - # Clean clean: rm -f $(OBJS) $(TARGET).elf $(TARGET).hex