mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2024-12-22 16:30:06 +00:00
849300b51c
Change-Id: I6d29b7ff143828ff78a21a717a3c638553505d81
23 lines
589 B
Makefile
23 lines
589 B
Makefile
# 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
|
|
F_CPU = 24000000
|
|
|
|
# Default Baud Rate of serial interface
|
|
# Note: F_CPU / 16 / BAUD need to be close to an integer
|
|
BAUD = 115200
|
|
|
|
# Common include files
|
|
include $(COMMON)/Makefile_$(TARGET).inc
|
|
include $(COMMON)/Makefile.inc
|