2019-10-24 13:06:03 +00:00
|
|
|
# The root directory of the project
|
|
|
|
ROOT = ../../..
|
|
|
|
|
|
|
|
# The common directory for makefile includes, etc.
|
|
|
|
COMMON = ../../common
|
|
|
|
|
|
|
|
# The project .bit file produced by the Xilinx .xise project
|
|
|
|
PROJECT = MC6809CpuMonALS
|
|
|
|
|
|
|
|
# The target .bit file to be generated including the monitor program
|
|
|
|
TARGET = ice6809
|
|
|
|
|
|
|
|
# Frequuency that the AVR runs at
|
2019-11-11 11:16:42 +00:00
|
|
|
F_CPU = 24000000
|
|
|
|
|
|
|
|
# Default Baud Rate of serial interface
|
|
|
|
# Note: F_CPU / 16 / BAUD need to be close to an integer
|
|
|
|
BAUD = 115200
|
2019-10-24 13:06:03 +00:00
|
|
|
|
|
|
|
# Common include files
|
|
|
|
include $(COMMON)/Makefile_$(TARGET).inc
|
|
|
|
include $(COMMON)/Makefile.inc
|