AtomBusMon/target/lx9_dave/ice65c02/Makefile
David Banks 849300b51c lx9_dave: Baud rate now 115200
Change-Id: I6d29b7ff143828ff78a21a717a3c638553505d81
2019-11-11 11:16:42 +00:00

23 lines
591 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 = MOS6502CpuMonALS
# The target .bit file to be generated including the monitor program
TARGET = ice65c02
# 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