Changes between Version 25 and Version 26 of Component/Vci Multi Tty


Ignore:
Timestamp:
Nov 17, 2010, 2:36:43 PM (13 years ago)
Author:
Nicolas Pouillon
Comment:

Add other ctor

Legend:

Unmodified
Added
Removed
Modified
  • Component/Vci Multi Tty

    v25 v26  
    7878=== CABA Constructor parameters ===
    7979
     80* With a known number of ttys
    8081{{{
    8182VciMultiTty(
     
    8384     const soclib::common::IntTab &index,   //  Target index
    8485     const soclib::common::MappingTable &mt,   // Mapping Table
    85      const char *first_tty_name, ...);   // TTY names (as many names as terminals)
     86     const char *first_tty_name, ...);   // TTY names (as many names as terminals), NULL terminated
     87}}}
     88* With a variable number of ttys
     89{{{
     90VciMultiTty(
     91     sc_module_name name,
     92     const IntTab &index,
     93     const MappingTable &mt,
     94     const std::vector<std::string> &names );
    8695}}}
    8796