Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / legion / docs / readmes / README.cpu_version
CommitLineData
920dae64
AT
1**Setting CPU version information**
2
3In the processor section of the conf file, you can specify
4mask/impl/manuf values. If any values are not specified
5in the conf file, then the default values, as defined in the
6respective processor header file, will be used.
7
8e.g.
9
10to change only 'impl' to '0xbeef' on Niagara (manuf/mask at
11default):
12
13In conf file:
14
15 processor "niagara" {
16 ...
17 ...
18 ver "impl" 0xbeef; // set impl to '0xbeef'
19 }
20
21to change 'manuf' to '0x5a5a', 'impl' to '0xbeef', and 'mask' to
22'0x77':
23
24 ver "manuf" 0x5a5a "impl" 0xbeef "mask" 0x77;
25
26 or
27
28 ver 0x5a5abeef77000000;
29