# simple_cpu **Repository Path**: yds90/simple_cpu ## Basic Information - **Project Name**: simple_cpu - **Description**: NVDLA modifications for GreenSocs models/simple_cpu (https://git.greensocs.com/models/simple_cpu) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: nvdla_vp - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-23 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This library provides SystemC CPUs. It can load shared libraries developped with TLM2C. How to include this model in a project: * Copy the misc/FindSIMPLECPU.cmake in your project repository. * Add the following lines into your CMakeLists.txt: FIND_PACKAGE(SIMPLECPU) if(SIMPLECPU_FOUND) INCLUDE_DIRECTORIES(${SIMPLECPU_INCLUDE_DIRS}) LINK_DIRECTORIES(${SIMPLECPU_LIBRARY_DIRS}) else() MESSAGE(FATAL_ERROR "SIMPLECPU not found.") endif() You're now able to use SimpleCPU headers and link the toplevel with SIMPLECPU_LIBRARIES.