📄 mips_trace.h
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -