mips_trace.h
来自「基于4个mips核的noc设计」· C头文件 代码 · 共 36 行
H
36 行
/* * TU Eindhoven * Eindhoven, The Netherlands * * Name : mips_trace.h * * Author : A.S.Slusarczyk@tue.nl * * Date : * * Function : Tracing functions * The functions add the tracing of the signals of their argument * module to the tracefile 'tf'. The names of the traced signals * will start with 'prefix'. * */#ifndef MIPS_TRACE_H_INCLUDED#define MIPS_TRACE_H_INCLUDED#include "mmips.h"#include "cache.h"#include "cache_mainmem.h"#include "router.h"#include "netmips.h"void trace_mips( sc_trace_file *tf, mMIPS *mips, const char *prefix );void trace_cache( sc_trace_file *tf, DATA_CACHE *mem, const char *prefix );void trace_mainmem( sc_trace_file *tf, CACHE_MAINMEM *memory, const char *prefix );void trace_router( sc_trace_file *tf, ECUBE_ROUTER *router, const char *prefix );void trace_netmips( sc_trace_file *tf, NETmMIPS *mips, const char *prefix );void trace_netif( sc_trace_file *tf, NETWORK_INTERFACE *netif, const char *prefix );#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?