Changes between Version 11 and Version 12 of Writing Rules/Caba
- Timestamp:
- Mar 27, 2007, 10:08:45 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Writing Rules/Caba
v11 v12 80 80 81 81 }} 82 83 82 }}} 84 83 … … 110 109 size_t m_size; // size (bytes) 111 110 IntTab m_target_index; // VCI target index 112 bool m_cacheability; // cacheable attribut111 bool m_cacheability; // cacheable 113 112 }}} 114 113 … … 121 120 * All internal register names should be prefixed with `r_` 122 121 * All member variables should be prefixed with `m_` 122 123 These rules can help understanding variables semantics or 124 having a [wiki:EditorUtils/EmacsHighlight better syntax highlight]. 123 125 124 126 = Component ressources = … … 266 268 sc_signal<typename vci_param::pktid_t> r_buf_pktid; 267 269 sc_signal<typename vci_param::eop_t> r_buf_eop; 268 sc_signal<bool> 270 sc_signal<bool> r_buf_value; 269 271 270 272 // Pointer on the table of locks (allocated in the constructor)