X-Git-Url: http://cloudbase.mooo.com/gitweb/avrcpm.git/blobdiff_plain/ebf7dfabfadaa9d9fdb4ba412cfea7a5e4031787..8791c3a48be156966a602adabc11614147ff85c8:/avrcpm/avr/Makefile diff --git a/avrcpm/avr/Makefile b/avrcpm/avr/Makefile index b1a4afe..9fa980f 100644 --- a/avrcpm/avr/Makefile +++ b/avrcpm/avr/Makefile @@ -2,17 +2,20 @@ # is public domain), believed to be neutral to any flavor of "make" # (GNU make, BSD make, SysV make) -MCU = atmega8 -#F_CPU = 12288000 +#MCU = atmega8 +MCU = atmega328P F_CPU = 20000000 +#BAUD = 19200 BAUD = 57600 -DRAM_DQ_ORDER = 1 +#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