text
stringlengths
41
20k
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/* * Copyright (C) 2020 GreenWaves Technologies, SAS, ETH Zurich and * University of Bologna * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apac...
:string &s, char delimiter) { std::vector<std::string> tokens; std::string token; std::istringstream tokenStream(s); while (std::getline(tokenStream, token, delimiter)) { tokens.push_back(token); } return tokens; } vp::config *vp::config::create_config(jsmntok_t *tokens, int *_size)...
(auto& x: this->get_childs()) { x->dump_traces_recursive(file); } } vp::component *vp::__gv_create(std::string config_path, struct gv_conf *gv_conf) { setenv("PULP_CONFIG_FILE", config_path.c_str(), 1); js::config *js_config = js::import_config_from_file(config_path); if (js_config == NUL...
// ================================================================ // NVDLA Open Source Project // // Copyright(c) 2016 - 2017 NVIDIA Corporation. Licensed under the // NVDLA Open Hardware License; Check "LICENSE" which comes with // this distribution for more information. // =======================================...
//***** Convert FP17 to FP32 ****** ac_channel<vFp17Type> chn_a; chn_a.write(icvt_data_out[i]); HLS_fp17_to_fp32(chn_a, fp17tofp32_out[i]); icvt_data_out_fp32[i] = fp17tofp32_out[i].read(); ac_channel<vFp32Type> chn_b, chn_c; chn_b.write(icvt_data_out_fp32[i]...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
#include "systemc.h" #if 0 #include "first_counter.cpp" #else #include "counter_vhdl.cpp" #endif int sc_main (int argc, char* argv[]) { sc_signal<bool> clock; sc_signal<bool> reset; sc_signal<bool> enable; sc_signal<sc_uint<4> > counter_out; int i = 0; // Connect the DUT first_counter counter("COUN...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
#include "observer.hpp" #include "objection.hpp" #include "top.hpp" #include "systemc.hpp" #include <iomanip> #include <string> using namespace sc_core; namespace { constexpr char const* const MSGID{ "/Doulos/Example/tracing" }; } Observer_module::Observer_module( sc_module_name instance ) : sc_module( instance ) ...
#include <systemc.h> #include <i2c_controller.h> void i2c_controller::clk_divider() { if(rst) { i2c_clk.write(1); } else { if(counter2 == 1) { bool t = i2c_clk.read(); i2c_clk.write(!t); counter2 = 0; } else { counter2 = counter2 + 1; } } } void i2c_controller::scl_controller() { ...
// ---------------------------------------------------------------------------- // SystemC SCVerify Flow -- sysc_sim_trans.cpp // // HLS version: 10.4b/841621 Production Release // HLS date: Thu Oct 24 17:20:07 PDT 2019 // Flow Packages: HDL_Tcl 8.0a, SCVerify 10.4 // // Generated by: billyk@cad.eecs.harvar...
_rtl_SIG_weight_in_vec_4_rdy << ccs_rtl_SIG_weight_in_vec_5_rdy << ccs_rtl_SIG_weight_in_vec_6_rdy << ccs_rtl_SIG_weight_in_vec_7_rdy << weight_in_vec[0].Connections::InBlocking<ac_int<8, true >, Connections::SYN_PORT >::msg << weight_in_vec[1].Connections::InBlocking<ac_int<8, true >, Connections::SYN_PORT >::msg << w...
eld_key=accum_out_vec:6bfbc86a-4643-405d-8ac5-31fb9eb3828c-869:rdy:6bfbc86a-4643-405d-8ac5-31fb9eb3828c-888 type_to_vector(accum_out_vec[3].Connections::OutBlocking_Ports_abs<ac_int<32, true > >::rdy.read(),1,t_6bfbc86a_4643_405d_8ac5_31fb9eb3828c_888); // read orig port and type convert ccs_rtl_SIG_accum_out_vec...
#include <systemc.h> // // Example which is using switch statement to create multiplexer // // .. hwt-autodoc:: // SC_MODULE(SwitchStmHwModule) { // ports sc_in<sc_uint<1>> a; sc_in<sc_uint<1>> b; sc_in<sc_uint<1>> c; sc_out<sc_uint<1>> out; sc_in<sc_uint<3>> sel; // component ins...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
#ifndef IPS_FILTER_TLM_CPP #define IPS_FILTER_TLM_CPP #include <systemc.h> using namespace sc_core; using namespace sc_dt; using namespace std; #include <tlm.h> #include <tlm_utils/simple_initiator_socket.h> #include <tlm_utils/simple_target_socket.h> #include <tlm_utils/peq_with_cb_and_phase.h> #include "ips_filter_...
/******************************************************************************* * pcnttest.cpp -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * This is the main testbench for the pcnt.ino test. *******************...
/* Copyright &copy; 2017, Stefan Sicklinger, Munich * * All rights reserved. * * This file is part of STACCATO. * * STACCATO is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the Licens...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
#include <systemc.h> #include "memory.cpp" int sc_main (int argc, char* argv[]) { int data; ram mem("MEM", 1024); // Open VCD file sc_trace_file *wf = sc_create_vcd_trace_file("memory"); wf->set_time_unit(1, SC_NS); // Dump the desired signals sc_trace(wf, data, "data"); sc_start...
#include <systemc.h> // // Every HW component class has to be derived from :class:`hwt.hwModule.HwModule` class // // .. hwt-autodoc:: // SC_MODULE(Showcase0) { // ports sc_in<sc_uint<32>> a; sc_in<sc_int<32>> b; sc_out<sc_uint<32>> c; sc_in_clk clk; sc_out<sc_uint<1>> cmp_0; sc_o...
/******************************************************************************** * University of L'Aquila - HEPSYCODE Source Code License * * * * ...
oat idI4CSmin = 0; pu.setI4CSmin(idI4CSmin); float idI4CSmax = 0; pu.setI4CSmax(idI4CSmax); // PU-Vdd (V) float idVdd = 0; pu.setVdd(idVdd); // PU-Idd (A) float idIdd = 0; pu.setIdd(idIdd); // PU-overheadCS (us) float idOver = 0; pu.setOverheadCS(sc_time((int)idOver, SC_US)); ...
object/node structure //pugi::xml_node instancesPS2 = myDoc.child("instancesPS"); //for (pugi::xml_node_iterator seqProcess_it=instancesPS2.begin(); seqProcess_it!=instancesPS2.end(); ++seqProcess_it){ // int Id = atoi(seqProcess_it->child_value("id")); // // if(seqProcess_it->child("WCET")){ // pugi::xml_node ...
/* * Copyright (C) 2020 GreenWaves Technologies, SAS, ETH Zurich and * University of Bologna * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apac...
/******************************************************************************** * University of L'Aquila - HEPSYCODE Source Code License * * * * ...
//**************************************************************************************** // MIT License //**************************************************************************************** // Copyright (c) 2012-2020 University of Bremen, Germany. // Copyright (c) 2015-2020 DFKI GmbH Bremen, Germany. // Cop...
/* * @ASCK */ #include <systemc.h> SC_MODULE (PC) { sc_in <bool> clk; sc_in <sc_uint<14>> prev_addr; sc_out <sc_uint<14>> next_addr; /* ** module global variables */ SC_CTOR (PC){ SC_METHOD (process); sensitive << clk.pos(); } void process () { ...
/******************************************************************************* * tpencoder.cpp -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * This is a testbench module to emulate a rotary quad encoder with a bu...
//**************************************************************************************** // MIT License //**************************************************************************************** // Copyright (c) 2012-2020 University of Bremen, Germany. // Copyright (c) 2015-2020 DFKI GmbH Bremen, Germany. // Cop...
#ifndef USING_TLM_TB_EN #define int64 systemc_int64 #define uint64 systemc_uint64 #include <systemc.h> #undef int64 #undef uint64 #define int64 opencv_int64 #define uint64 opencv_uint64 #include <opencv2/opencv.hpp> #undef int64 #undef uint64 #include "vga.hpp" // Image path #define IPS_IMG_PATH_TB "../../tools/d...
/* Problem 3 Design */ #include<systemc.h> SC_MODULE(communicationInterface) { sc_in<sc_uint<12> > inData; sc_in<bool> clock , reset , clear; sc_out<sc_uint<4> > payloadOut; sc_out<sc_uint<8> > countOut , errorOut; void validateData(); SC_CTOR(communicationInterface) { SC_METHOD(validateData); sensitive<...
/* * Created on: 21. jun. 2019 * Author: Jonathan Horsted Schougaard */ #ifdef HW_COSIM //#define __GMP_WITHIN_CONFIGURE #endif #define DEBUG_SYSTEMC #define SC_INCLUDE_FX #include "hwcore/tb/pipes/tb_streamcircularlinebuffer.h" #include <cstdlib> #include <iostream> #include <systemc.h> unsigned errors = 0; ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
// Copyright 2018 Evandro Luis Copercini // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or ag...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
// //------------------------------------------------------------// // Copyright 2009-2012 Mentor Graphics Corporation // // All Rights Reserved Worldwid // // // // Licensed under the Apache License, Version 2.0 (the ...
#include <pthread.h> #include <systemc.h> #include "sc_main.h" #include "sc_run.h" //#include "sc_config.h" #include "sc_qt_adaptor.h" //#include "sc_rst.h" //#include "sc_clk.h" //#include "sc_mux.h" //#include "sc_tri.h" //#include "sc_terminals.h" //#include "sc_gates.h" //#include "sc_gates_pv.h" //#include "sc_re...
/* * Copyright (c) 2017-2018 OFFIS Institute for Information Technology * Oldenburg, Germany * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://ww...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/* * @ASCK */ #include <systemc.h> SC_MODULE (Memory) { sc_in <bool> r_nw; sc_in <sc_uint<13>> addr; sc_in <sc_int<8>> data; sc_out <sc_int<8>> out; /* ** module global variables */ sc_int<8> mem[8192] = {0}; // 2^13 rows bool done = false; SC_CTOR (Memory){ ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/////////////////////////////////////////////////////////////////////////////////// // __ _ _ _ // // / _(_) | | | | // // __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | ...
/********************************************************************** Filename: E_fir_pe.h Purpose : FPGA Emulated PE of Systolic FIR filter Author : goodkook@gmail.com History : Mar. 2024, First release ***********************************************************************/ #ifndef _E_FIR_PE_H_ #define _E_FIR_PE_...
#include <systemc.h> #ifndef CONSUMER_H_ #define CONSUMER_H_ SC_MODULE(Consumer){ sc_in<int> data; int readNumber; SC_CTOR(Consumer){ SC_METHOD(consume); sensitive << data; } void consume() { readNumber = data.read(); //readNumber = data; //geht bei SC_SIGNAL auch cout << "[" << sc_time_stamp() <<...
/******************************************************************************* * gpio_matrix.h -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * Models the ESP32 GPIO Matrix ***************************************...
et supported */ CONNECTOUTMUX(2); /* GPIO 3 */ i_mux_d3.pin(d3); CONNECTFUNC(i_mux_d3, l0_f1, l0_f1, d_u0rx_s); /* F1 U0RX */ CONNECTFUNC(i_mux_d3, l0_f2, l1_f2, sig_open); /* F2 CLK_OUT2*/ CONNECTFUNC(i_mux_d3, mout_s[3], men_s[3], min_s[3]); /* F3 GPIO */ /* ...
/******************************************************************************* * HelloServertest.h -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * This is the main testbench header for the HelloServer.ino test. I...
/******************************************************************************* * pcntmod.h -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * Implements a SystemC module for the ESP32 Pulse Counter ******************...
/******************************************************************************* * SmallScreentest.h -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * This is the main testbench header for the Blink.ino test. It desc...
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2017 Cadence Design Systems, Inc. All rights reserved worldwide. // // The code contained herein is the proprietary and confidential information // of Cadence or its licensors, and is supplied subject to a previously // ...
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2017 Cadence Design Systems, Inc. All rights reserved worldwide. // // The code contained herein is the proprietary and confidential information // of Cadence or its licensors, and is supplied subject to a previously // ...
/* * @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_AluM...
#ifndef _SYSTEM_H_ #define _SYSTEM_H_ #include <systemc.h> #include <esc.h> #include <stratus_hls.h> #include <cynw_p2p.h> #include "tb.h" #include "dut_wrap.h" SC_MODULE(System) { sc_clock clk_sig; sc_signal<bool> rst_sig; sc_signal<bool> finish; sc_int<32> A[10]; sc_int<32> B[10]; sc_int<32> D[10]; ...
/** #define meta ... prInt32f("%s\n", meta); **/ /* All rights reserved to Alireza Poshtkohi (c) 1999-2023. Email: arp@poshtkohi.info Website: http://www.poshtkohi.info */ #ifndef __s3_h__ #define __s3_h__ #include <systemc.h> SC_MODULE(s3) { sc_in<sc_uint<6> > stage1_input; sc_out<sc_uint<4> > ...
/** #define meta ... prInt32f("%s\n", meta); **/ /* All rights reserved to Alireza Poshtkohi (c) 1999-2023. Email: arp@poshtkohi.info Website: http://www.poshtkohi.info */ #ifndef __s4_h__ #define __s4_h__ #include <systemc.h> SC_MODULE(s4) { sc_in<sc_uint<6> > stage1_input; sc_out<sc_uint<4> > ...
/** #define meta ... prInt32f("%s\n", meta); **/ /* All rights reserved to Alireza Poshtkohi (c) 1999-2023. Email: arp@poshtkohi.info Website: http://www.poshtkohi.info */ #ifndef __des_h__ #define __des_h__ #include <systemc.h> #include "round.h" //S boxes #include "s1.h" #include "s2.h" #include "s3.h...
// ================================================================ // NVDLA Open Source Project // // Copyright(c) 2016 - 2017 NVIDIA Corporation. Licensed under the // NVDLA Open Hardware License; Check "LICENSE" which comes with // this distribution for more information. // =======================================...
// ================================================================ // NVDLA Open Source Project // // Copyright(c) 2016 - 2017 NVIDIA Corporation. Licensed under the // NVDLA Open Hardware License; Check "LICENSE" which comes with // this distribution for more information. // =======================================...
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2017 Cadence Design Systems, Inc. All rights reserved worldwide. // // The code contained herein is the proprietary and confidential information // of Cadence or its licensors, and is supplied subject to a previously // ...
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2017 Cadence Design Systems, Inc. All rights reserved worldwide. // // The code contained herein is the proprietary and confidential information // of Cadence or its licensors, and is supplied subject to a previously // ...
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2017 Cadence Design Systems, Inc. All rights reserved worldwide. // // The code contained herein is the proprietary and confidential information // of Cadence or its licensors, and is supplied subject to a previously // ...
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2017 Cadence Design Systems, Inc. All rights reserved worldwide. // // The code contained herein is the proprietary and confidential information // of Cadence or its licensors, and is supplied subject to a previously // ...
#include <systemc.h> class sc_clockx : sc_module, sc_interface { public: sc_event edge; sc_event change; bool val; bool _val; int delta; private: int period; SC_HAS_PROCESS(sc_clockx); void run(void) { int tmp = period/2; edge.notify(SC_ZERO_TIME); change.notify(S...
#pragma once #include <systemc.h> #include "constants.h" #include "debug_util.h" SC_MODULE(reg) { // Reading Port : sc_in<sc_uint<6>> RADR1_SD; sc_in<sc_uint<6>> RADR2_SD; sc_out<sc_uint<32>> RDATA1_SR; sc_out<sc_uint<32>> RDATA2_SR; // Writing Port : sc_in<sc_uint<6>> WADR_SW; sc_i...
/* $Id: ticks.h,v 1.3 2010/11/23 22:42:02 scott Exp $ Description: Macros for timing Usage: Define the timer call desired (e.g. #define FTIME, TIMEOFDAY, GETTIME) before including "ticks.h" Example: #define TIMEOFDAY 1 #include "ticks.h" void benchmark(void) { tick_t start, finish; tget(start); timed_section(); ...
#pragma once #include <systemc.h> #include "../../UTIL/debug_util.h" typedef enum // MAE STATES { IDLE = 0, COMM = 1, } states_fsm; #define nb_slaves 1 #define nb_masters 1 #define ram_adr_deb 0x00000000 #define ram_adr_end 0xFFFFFFFF SC_MODULE(wb_arbiter) { sc_in_clk CLK; sc_in<bool> RESET_N; ...
/********************************************************************** Filename: sc_fir8_tb.h Purpose : Testbench of 8-Tab Systolic FIR filter Author : goodkook@gmail.com History : Mar. 2024, First release ***********************************************************************/ #ifndef _SC_FIR8_TB_H_ #define _SC_FI...
/************************************************************************** * * * Catapult(R) Machine Learning Reference Design Library * * * * Software Ver...
/******************************************************************************* * Blinktest.h -- Copyright 2019 (c) Glenn Ramalho - RFIDo Design ******************************************************************************* * Description: * This is the main testbench header for the Blink.ino test. It describes ...
#ifndef SYSC_TYPES_H #define SYSC_TYPES_H #include <systemc.h> typedef struct _DATA { sc_uint<32> data; bool tlast; inline friend ostream &operator<<(ostream &os, const _DATA &v) { cout << "data&colon; " << v.data << " tlast: " << v.tlast; return os; } } DATA; typedef struct _SDATA { sc_int<32> da...
/** #define meta ... prInt32f("%s\n", meta); **/ /* All rights reserved to Alireza Poshtkohi (c) 1999-2023. Email: arp@poshtkohi.info Website: http://www.poshtkohi.info */ #ifndef __s5_h__ #define __s5_h__ #include <systemc.h> SC_MODULE(s5) { sc_in<sc_uint<6> > stage1_input; sc_out<sc_uint<4> > ...
#pragma once #include <systemc.h> #include "../../UTIL/debug_util.h" typedef enum // MAE STATES { R_IDLE = 0, R_REQ = 1, R_DC_READ = 2, R_DC_END_BURST = 3, R_DC_WRITE = 4, R_IC = 5, R_IC_END_BURST = 6 } river_states_fsm; SC_MODULE(wb_river_mc) { sc_in_clk CLK; sc_in<bool> RESET_N...
/********************************************************************** Co-Simulation of Verilated+SystemC VPI+iVerilog Filename: sc_fir8_tb.h Purpose : Testbench of 8-Tab Systolic FIR filter Author : goodkook@gmail.com History : Mar. 2024, First release ****************************************************************...
/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses...
/******************************************************************************* Vendor: GoodKook, goodkook@gmail.com Associated Filename: sc_shifter_TB.cpp Purpose: Testbench Revision History: Aug. 1, 2024 *******************************************************************************/ #ifndef _SC_SHIFTER_TB_H_ #defi...
#ifndef D_CACHE #define D_CACHE #include <systemc.h> #include "buffercache.h" #include "../../UTIL/debug_util.h" //cache N-way associatif, write through et buffet // taille du cache 1024 // buffer de taille 2 // 2-way => 1024/2 => 512 / 4mots => 128 lignes // index => 7 bits // offset => 4 mots => 2 bits // tag => 2...
// ================================================================ // NVDLA Open Source Project // // Copyright(c) 2016 - 2017 NVIDIA Corporation. Licensed under the // NVDLA Open Hardware License; Check "LICENSE" which comes with // this distribution for more information. // =======================================...
// ================================================================ // NVDLA Open Source Project // // Copyright(c) 2016 - 2017 NVIDIA Corporation. Licensed under the // NVDLA Open Hardware License; Check "LICENSE" which comes with // this distribution for more information. // =======================================...