|
Last change
on this file since 136 was
81,
checked in by rosiere, 18 years ago
|
- Finish Environment (and test)
- Continue predictor_unit
- Add external tools
- svn keyword "Id" set
|
-
Property svn:keywords set to
Id
|
|
File size:
284 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * Manipulation of processor information |
|---|
| 3 | */ |
|---|
| 4 | |
|---|
| 5 | .file "cpu_info.s" |
|---|
| 6 | .section .text |
|---|
| 7 | .align 4 |
|---|
| 8 | |
|---|
| 9 | .global _get_cpu_id |
|---|
| 10 | _get_cpu_id : |
|---|
| 11 | l.jr r9 |
|---|
| 12 | l.mfspr r11,r0,0xF800 /* R11 <- SPR[31][0] */ |
|---|
| 13 | |
|---|
| 14 | .global _set_cpu_id |
|---|
| 15 | _set_cpu_id : |
|---|
| 16 | l.jr r9 |
|---|
| 17 | l.mtspr r0 ,r3,0xF800 /* SPR[31][0] <- r3 */ |
|---|
| 18 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.