X-Git-Url: http://cloudbase.mooo.com/gitweb/avrcpm.git/blobdiff_plain/f2114c72ecf341b6b8cfb71c440cef7aeb2ccf0c..8791c3a48be156966a602adabc11614147ff85c8:/avrcpm/avr/Makefile diff --git a/avrcpm/avr/Makefile b/avrcpm/avr/Makefile index 1d0d5c3..9fa980f 100644 --- a/avrcpm/avr/Makefile +++ b/avrcpm/avr/Makefile @@ -4,16 +4,18 @@ #MCU = atmega8 MCU = atmega328P -#F_CPU = 24576000 F_CPU = 20000000 -BAUD = 115200 -DRAM_DQ_ORDER = 1 +#BAUD = 19200 +BAUD = 57600 +#BAUD = 115200 -TARGET = z80 -ASRC = z80.asm +DRAM_8BIT = 1 + +TARGET = avrcpm +ASRC = avrcpm.asm # Place -D or -U options here -CDEFS = -DF_CPU=$(F_CPU) -DBAUD=$(BAUD) -D$(MCU) -DDRAM_DQ_ORDER=$(DRAM_DQ_ORDER) +CDEFS = -DF_CPU=$(F_CPU) -DBAUD=$(BAUD) -D$(MCU) -DDRAM_8BIT=$(DRAM_8BIT) WINEPATH = C:/Programme/Atmel/AVR\ Tools/AvrAssembler2 DEFS = $(WINEPATH)/Appnotes