Jump to content

Search the Community

Showing results for tags 'binary to sc_bv'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Accellera Systems Initiative
    • Information
    • Announcements
    • In the News
  • SystemC
    • SystemC Language
    • SystemC AMS (Analog/Mixed-Signal)
    • SystemC TLM (Transaction-level Modeling)
    • SystemC Verification (UVM-SystemC, SCV, CRAVE, FC4SC)
    • SystemC CCI (Configuration, Control & Inspection)
    • SystemC Datatypes
  • UVM (Universal Verification Methodology)
    • UVM (IEEE 1800.2) - Methodology and BCL Forum
    • UVM SystemVerilog Discussions
    • UVM Simulator Specific Issues
    • UVM Commercial Announcements
    • UVM (Pre-IEEE) Methodology and BCL Forum
  • Portable Stimulus
    • Portable Stimulus Discussion
    • Portable Stimulus 2.0 Public Review Feedback
  • IP Security
    • SA-EDI Standard Discussion
    • IP Security Assurance Whitepaper Discussion
  • IP-XACT
    • IP-XACT Discussion
  • SystemRDL
    • SystemRDL Discussion
  • IEEE 1735/IP Encryption
    • IEEE 1735/IP Encryption Discussion
  • Commercial Announcements
    • Announcements

Categories

  • SystemC
  • UVM
  • UCIS
  • IEEE 1735/IP Encryption

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Biography


Location


Interests


Occupation


Company

Found 1 result

  1. I am trying a convert a string to a bit vector but unable to do so. Aim is to directly store the string as bit vector into Memory. Part of code: //<required libs declared> //..// string line; sc_bv<32> Mem[256]; //..// case 1: { i=1; ifstream mem_1("../mem_1.txt"); if (mem_1){ while (getline(mem_1,line)){ Mem= line; i++ ; } mem_1.close(); } else { cout << "mem_1 not found "; } break; } Where mem_1.txt contains binary: eg. 00100000000001000000000000000000 00000000010000110010100000100100 00000000011000000011000000100111 Error: /usr/local/systemc-2.3.0/include/sysc/datatypes/bit/sc_bv.h:192:15: note: sc_dt::sc_bv<W>& sc_dt::sc_bv<W>::operator=(sc_dt::int64) [with int W = 32, sc_dt::int64 = long long int] /usr/local/systemc-2.3.0/include/sysc/datatypes/bit/sc_bv.h:192:15: note: no known conversion for argument 1 from ‘std::string {aka std::basic_string<char>}’ to ‘long long int’ Thanks in advance. -- Samyak
×
×
  • Create New...