Changes between Version 13 and Version 14 of Component/Mips
- Timestamp:
- Jan 27, 2008, 12:47:06 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Component/Mips
v13 v14 19 19 with the GPR![0] destination register, a cache line invalidation request is sent to the data cache. 20 20 21 It exists in Big-endian and Little-endian forms. 22 21 23 = Component definition = 22 24 23 Available in source:trunk/soclib/desc/soclib/mips .sd25 Available in source:trunk/soclib/desc/soclib/mipsel.sd and source:trunk/soclib/desc/soclib/mipseb.sd 24 26 25 27 == Usage == … … 27 29 Mips has no parameters. 28 30 {{{ 29 Uses( 'mips') 31 Uses( 'mipsel') 32 }}} 33 or 34 {{{ 35 Uses( 'mipseb') 30 36 }}} 31 37 … … 42 48 43 49 == Constructor parameters == 50 44 51 {{{ 45 Mips Iss(52 MipsElIss( 46 53 sc_module_name name, // Instance Name 47 54 int ident); // processor id 55 }}} 56 or 57 {{{ 58 MipsEbIss( name, ident); 48 59 }}} 49 60