/[gxemul]/trunk/src/machines/machine_alpha.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_alpha.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_alpha.c,v 1.6 2006/06/02 18:11:38 debug Exp $   *  $Id: machine_alpha.c,v 1.7 2006/06/24 10:19:19 debug Exp $
29   */   */
30    
31  #include <stdio.h>  #include <stdio.h>
# Line 201  MACHINE_DEFAULT_RAM(alpha) Line 201  MACHINE_DEFAULT_RAM(alpha)
201    
202  MACHINE_REGISTER(alpha)  MACHINE_REGISTER(alpha)
203  {  {
204          MR_DEFAULT(alpha, "Alpha", ARCH_ALPHA, MACHINE_ALPHA, 1, 4);          MR_DEFAULT(alpha, "Alpha", ARCH_ALPHA, MACHINE_ALPHA);
         me->aliases[0] = "alpha";  
205    
206          me->subtype[0] = machine_entry_subtype_new("AlphaBook 1",          machine_entry_add_alias(me, "alpha");
             ST_ALPHABOOK1, 1);  
         me->subtype[0]->aliases[0] = "alphabook1";  
   
         me->subtype[1] = machine_entry_subtype_new("AlphaServer 4100",  
             ST_DEC_4100, 1);  
         me->subtype[1]->aliases[0] = "alphaserver4100";  
   
         me->subtype[2] = machine_entry_subtype_new("DEC 3000/300",  
             ST_DEC_3000_300, 1);  
         me->subtype[2]->aliases[0] = "3000/300";  
207    
208          me->subtype[3] = machine_entry_subtype_new("EB164", ST_EB164, 1);          machine_entry_add_subtype(me, "AlphaBook 1", ST_ALPHABOOK1,
209          me->subtype[3]->aliases[0] = "eb164";              "alphabook1", NULL);
210    
211            machine_entry_add_subtype(me, "AlphaServer 4100", ST_DEC_4100,
212                "alphaserver4100", NULL);
213    
214            machine_entry_add_subtype(me, "DEC 3000/300", ST_DEC_3000_300,
215                "3000/300", NULL);
216    
217            machine_entry_add_subtype(me, "EB164", ST_EB164,
218                "eb164", NULL);
219    
220          me->set_default_ram = machine_default_ram_alpha;          me->set_default_ram = machine_default_ram_alpha;
         machine_entry_add(me, ARCH_ALPHA);  
221  }  }
222    

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

  ViewVC Help
Powered by ViewVC 1.1.26