ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/name_registry.cpp
(Generate patch)

Comparing SheepShaver/src/name_registry.cpp (file contents):
Revision 1.15 by gbeauche, 2004-12-19T09:01:04Z vs.
Revision 1.22 by cebix, 2010-02-21T09:59:14Z

# Line 1 | Line 1
1   /*
2   *  name_registry.cpp - Name Registry handling
3   *
4 < *  SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig
4 > *  SheepShaver (C) Christian Bauer and Marc Hellwig
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 60 | Line 60 | static const uint8 video_driver[] = {
60  
61   // Ethernet driver stub
62   static const uint8 ethernet_driver[] = {
63 + #ifdef USE_ETHER_FULL_DRIVER
64 + #include "EthernetDriverFull.i"
65 + #else
66   #include "EthernetDriverStub.i"
67 + #endif
68   };
69  
70   // Helper for RegEntryID
# Line 93 | Line 97 | void DoPatchNameRegistry(void)
97                  SheepRegEntryID aapl_rom;
98                  if (!RegistryCStrEntryCreate(device_tree.addr(), "AAPL,ROM", aapl_rom.addr())) {
99                          RegistryPropertyCreateStr(aapl_rom.addr(), "device_type", "rom");
100 <                        SheepPair reg(ROM_BASE, ROM_SIZE);
100 >                        SheepPair reg(ROMBase, ROM_SIZE);
101                          RegistryPropertyCreate(aapl_rom.addr(), "reg", reg.addr(), 8);
102                  }
103  
104                  // Create "PowerPC,60x"
105                  SheepRegEntryID power_pc;
106 <                char *str;
106 >                const char *str;
107                  switch (PVR >> 16) {
108                          case 1:         // 601
109                                  str = "PowerPC,601";
# Line 131 | Line 135 | void DoPatchNameRegistry(void)
135                          case 80:        // 860
136                                  str = "PowerPC,860";
137                                  break;
138 +                        case 12:        // 7400, 7410, 7450, 7455, 7457
139 +                        case 0x800c:
140 +                        case 0x8000:
141 +                        case 0x8001:
142 +                        case 0x8002:
143 +                                str = "PowerPC,G4";
144 +                                break;
145                          default:
146                                  str = "PowerPC,???";
147                                  break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines