mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 05:37:16 -04:00
12 lines
229 B
C++
12 lines
229 B
C++
// Author: Florian Zaruba
|
|
// Description: ModelSim Helper Functions
|
|
#ifndef _MSIM_HELPER_H
|
|
#define _MSIM_HELPER_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
// sanitize htif arguments
|
|
std::vector<std::string> sanitize_args();
|
|
|
|
#endif
|