text
stringlengths 0
252
|
---|
mul1("mul1"), |
mul2("mul2"), |
mul3("mul3"), |
monitor_mul("monitor_mul"){ |
// Conectando o driver ao 1 mul |
driver_mul.acionamento(driver_mul1); |
mul1.soma_in(driver_mul1); |
// Conectando o 1 mul ao 2 mul |
mul1.resultado_out(mul1_mul2); |
mul2.soma_in(mul1_mul2); |
// Conectando o 2 mul ao 3 mul |
mul2.resultado_out(mul2_mul3); |
mul3.soma_in(mul2_mul3); |
// Conectando o 3 mul ao monitor |
mul3.resultado_out(mul3_monitor); |
monitor_mul.resultado(mul3_monitor); |
} |
}; |
#include <systemc.h> |
#include "breg_if.h" |
/* |
* Banco de registradores que implementa a interface breg_if, eh |
* utilizado na fase de EXECUTE. |
*/ |
struct breg_risc: public sc_module, public breg_if { |
// Leitura |
int16_t read_breg(uint16_t reg); |
// Escrita |
void write_breg(uint16_t reg, int16_t dado); |
// Impressao |
void dump_breg(); |
SC_HAS_PROCESS(breg_risc); |
// Declaracao do breg |
breg_risc (sc_module_name n) : |
sc_module(n){ |
breg = new int16_t[16]; |
} |
private: |
int16_t *breg; |
}; |
#include <systemc.h> |
// Interface do breg |
struct breg_if: public sc_interface { |
// Leitura |
virtual |
int16_t read_breg(uint16_t reg) = 0; |
// Escrita |
virtual |
void write_breg(uint16_t reg, int16_t dado) = 0; |
// Impressao |
virtual |
void dump_breg() = 0; |
}; |
#include "fetch.h" |
/* |
* Decodificacao de uma funcao. |
* - Acessa: contexto. |
* - Saida: op, regs, regs2, regd, const4, const8. |
*/ |
SC_MODULE(decode){ |
// Ponteiro para o contexto |
Contexto_t *c_decode; |
// Entradas |
sc_fifo_in <Contexto_t*> decode_in; |
// Saidas |
sc_fifo_out <Contexto_t*> decode_out; |
// Definicao do funcionamento do decode |
void decoding(); |
SC_CTOR(decode){ |
SC_THREAD(decoding); |
} |
}; |
#include "decode.h" |
// Enumeracao que define os opcodes das instrucoes |
enum INSTRUCTIONS { |
i_ADD = 0x2, |
Subsets and Splits