| 1 |
2 |
jamieiles |
# Copyright Jamie Iles, 2017
|
| 2 |
|
|
#
|
| 3 |
|
|
# This file is part of s80x86.
|
| 4 |
|
|
#
|
| 5 |
|
|
# s80x86 is free software: you can redistribute it and/or modify
|
| 6 |
|
|
# it under the terms of the GNU General Public License as published by
|
| 7 |
|
|
# the Free Software Foundation, either version 3 of the License, or
|
| 8 |
|
|
# (at your option) any later version.
|
| 9 |
|
|
#
|
| 10 |
|
|
# s80x86 is distributed in the hope that it will be useful,
|
| 11 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 13 |
|
|
# GNU General Public License for more details.
|
| 14 |
|
|
#
|
| 15 |
|
|
# You should have received a copy of the GNU General Public License
|
| 16 |
|
|
# along with s80x86. If not, see .
|
| 17 |
|
|
|
| 18 |
|
|
include(Verilator)
|
| 19 |
|
|
|
| 20 |
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/../../rtl/microcode)
|
| 21 |
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/../../rtl)
|
| 22 |
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../rtl)
|
| 23 |
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../tests/rtl)
|
| 24 |
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common)
|
| 25 |
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
| 26 |
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
| 27 |
|
|
|
| 28 |
|
|
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/../../rtl/microcode/Microcode.sv PROPERTIES
|
| 29 |
|
|
COMPILE_FLAGS "-DMICROCODE_ROM_PATH=\\\"${CMAKE_CURRENT_BINARY_DIR}/../../rtl/microcode/\\\"")
|
| 30 |
|
|
|
| 31 |
|
|
get_property(ALU_SOURCES GLOBAL PROPERTY G_ALU_SOURCES)
|
| 32 |
|
|
get_property(CORE_SOURCES GLOBAL PROPERTY G_CORE_SOURCES)
|
| 33 |
|
|
|
| 34 |
|
|
verilate(TOPLEVEL RTLCPU
|
| 35 |
|
|
VERILOG_SOURCES
|
| 36 |
|
|
${CMAKE_CURRENT_SOURCE_DIR}/RTLCPU.sv
|
| 37 |
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../rtl/MemArbiter.sv
|
| 38 |
|
|
${CORE_SOURCES}
|
| 39 |
|
|
GENERATED_SOURCES ${CMAKE_CURRENT_BINARY_DIR}/VRTLCPU___024unit.cpp
|
| 40 |
|
|
${CMAKE_CURRENT_BINARY_DIR}/VRTLCPU___024unit.h
|
| 41 |
|
|
DEPENDS generate_microcode)
|
| 42 |
|
|
|
| 43 |
|
|
add_library(rtlsim SHARED
|
| 44 |
|
|
Core.cpp)
|
| 45 |
|
|
|
| 46 |
|
|
target_link_libraries(rtlsim
|
| 47 |
|
|
simcommon
|
| 48 |
|
|
verilator
|
| 49 |
|
|
VRTLCPU)
|
| 50 |
|
|
set_target_properties(rtlsim PROPERTIES LINK_FLAGS "-Wl,--export-dynamic")
|
| 51 |
|
|
|
| 52 |
|
|
install(TARGETS VRTLCPU
|
| 53 |
|
|
LIBRARY DESTINATION lib
|
| 54 |
|
|
COMPONENT simulator)
|