mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
19 lines
No EOL
323 B
C
19 lines
No EOL
323 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef USE_VLSIM
|
|
#include <fpga.h>
|
|
#else
|
|
#include <opae/fpga.h>
|
|
#endif
|
|
|
|
#if defined(USE_FPGA)
|
|
#define HANG_TIMEOUT 60
|
|
#else
|
|
#define HANG_TIMEOUT (30*60)
|
|
#endif
|
|
|
|
int vx_scope_start(fpga_handle hfpga, uint64_t start_time = 0, uint64_t stop_time = -1);
|
|
|
|
int vx_scope_stop(fpga_handle hfpga); |