text
stringlengths 0
252
|
---|
sc_in <bool> prev_r;
|
sc_in <bool> prev_w;
|
sc_in <bool> prev_WbMux;
|
sc_in <bool> prev_call;
|
sc_in <bool> prev_regWrite;
|
sc_in <sc_uint<3>> prev_rd;
|
sc_out <sc_int<8>> next_result;
|
sc_out <sc_int<13>> next_Imm;
|
sc_out <bool> next_r;
|
sc_out <bool> next_w;
|
sc_out <bool> next_WbMux;
|
sc_out <bool> next_call;
|
sc_out <bool> next_regWrite;
|
sc_out <sc_uint<3>> next_rd;
|
/*
|
** module global variables
|
*/
|
SC_CTOR (EXE){
|
SC_THREAD (process);
|
sensitive << clk.pos();
|
}
|
void process () {
|
while(true){
|
wait();
|
if(now_is_call){
|
wait(micro_acc_ev);
|
}
|
next_result.write(prev_result.read());
|
next_Imm.write(prev_Imm.read());
|
next_r.write(prev_r.read());
|
next_w.write(prev_w.read());
|
next_WbMux.write(prev_WbMux.read());
|
next_call.write(prev_call.read());
|
next_regWrite.write(prev_regWrite);
|
next_rd.write(prev_rd.read());
|
}
|
}
|
};
|
/*
|
* @ASCK
|
*/
|
#include <systemc.h>
|
SC_MODULE (ID) {
|
sc_in_clk clk;
|
sc_in <sc_int<8>> prev_A;
|
sc_in <sc_int<8>> prev_B;
|
sc_in <sc_int<13>> prev_Imm;
|
sc_in <sc_uint<3>> prev_Sa;
|
sc_in <sc_uint<5>> prev_AluOp;
|
sc_in <bool> prev_r;
|
sc_in <bool> prev_w;
|
sc_in <bool> prev_AluMux;
|
sc_in <bool> prev_WbMux;
|
sc_in <bool> prev_call;
|
sc_in <bool> prev_regWrite;
|
sc_in <sc_uint<3>> prev_rd;
|
sc_out <sc_int<8>> next_A;
|
sc_out <sc_int<8>> next_B;
|
sc_out <sc_int<13>> next_Imm;
|
sc_out <sc_uint<3>> next_Sa;
|
sc_out <sc_uint<5>> next_AluOp;
|
sc_out <bool> next_r;
|
sc_out <bool> next_w;
|
sc_out <bool> next_AluMux;
|
sc_out <bool> next_WbMux;
|
sc_out <bool> next_call;
|
sc_out <bool> next_regWrite;
|
sc_out <sc_uint<3>> next_rd;
|
/*
|
** module global variables
|
*/
|
SC_CTOR (ID){
|
SC_THREAD (process);
|
sensitive << clk.pos();
|
}
|
void process () {
|
while(true){
|
wait();
|
if(now_is_call){
|
wait(micro_acc_ev);
|
}
|
next_A.write(prev_A.read());
|
next_B.write(prev_B.read());
|
next_Imm.write(prev_Imm.read());
|
next_Sa.write(prev_Sa.read());
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.