/[gxemul]/trunk/src/machines/machine_prep.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/machines/machine_prep.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 25 by dpavlin, Mon Oct 8 16:19:56 2007 UTC revision 26 by dpavlin, Mon Oct 8 16:20:10 2007 UTC
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *     *  
27   *   *
28   *  $Id: machine_prep.c,v 1.6 2006/06/24 06:53:04 debug Exp $   *  $Id: machine_prep.c,v 1.8 2006/06/24 11:03:20 debug Exp $
29   *   *
30   *  Machines conforming to the PowerPC Reference Platform specs.   *  Machines conforming to the PowerPC Reference Platform specs.
31   */   */
# Line 181  MACHINE_DEFAULT_RAM(prep) Line 181  MACHINE_DEFAULT_RAM(prep)
181    
182  MACHINE_REGISTER(prep)  MACHINE_REGISTER(prep)
183  {  {
184          MR_DEFAULT(prep, "PowerPC Reference Platform", ARCH_PPC,          MR_DEFAULT(prep, "PowerPC Reference Platform", ARCH_PPC, MACHINE_PREP);
             MACHINE_PREP, 1, 2);  
   
         me->aliases[0] = "prep";  
   
         me->subtype[0] = machine_entry_subtype_new(  
             "IBM 6050/6070", MACHINE_PREP_IBM6050, 2);  
         me->subtype[0]->aliases[0] = "ibm6050";  
         me->subtype[0]->aliases[1] = "ibm6070";  
   
         me->subtype[1] = machine_entry_subtype_new(  
             "MVME2400", MACHINE_PREP_MVME2400, 1);  
         me->subtype[1]->aliases[0] = "mvme2400";  
185    
186            machine_entry_add_alias(me, "prep");
187          me->set_default_ram = machine_default_ram_prep;          me->set_default_ram = machine_default_ram_prep;
188    
189          machine_entry_add(me, ARCH_PPC);          machine_entry_add_subtype(me, "IBM 6050/6070", MACHINE_PREP_IBM6050,
190                "ibm6050", "ibm6070", NULL);
191    
192            machine_entry_add_subtype(me, "MVME2400", MACHINE_PREP_MVME2400,
193                "mvme2400", NULL);
194  }  }
195    

Legend:
Removed from v.25  
changed lines
  Added in v.26

  ViewVC Help
Powered by ViewVC 1.1.26