forked from Apple-2-HW/arduino-vga
0b4deef806
Uploading Current Source
6 lines
143 B
Bash
Executable File
6 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
avr-as -mmcu=atmega16u2 -o vga.o ghettovga.s
|
|
avr-ld -m avr35 -o vga.bin vga.o
|
|
avr-objcopy -j .text -j .data -O ihex vga.bin vga.hex
|