mips_trace.h

来自「改进的基于6个mips核的NOC网络」· C头文件 代码 · 共 42 行

H
42
字号
/*
 *  TU Eindhoven
 *  Eindhoven, The Netherlands
 *
 *  Name            :   mips_trace.h
 *
 *  Author          :   A.S.Slusarczyk@tue.nl
 *
 *  Updated         :   Jose Prats - jprats@step.es
 *
 *  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"

#include "remote_mem.h"
#include "net_remote_mem.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 );

//Cambio JPO!!
void trace_remote_memory( sc_trace_file *tf, REMOTE_MEM *remote_mem, const char *prefix );


#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?