-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
167 additions
and
83 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#ifndef __TPL_REGS_OFFSETS_H__ | ||
#define __TPL_REGS_OFFSETS_H__ | ||
|
||
#define CTX_GPR4 0 | ||
#define CTX_GPR5 4 | ||
#define CTX_GPR6 8 | ||
#define CTX_GPR7 12 | ||
#define CTX_GPR8 16 | ||
#define CTX_GPR9 20 | ||
#define CTX_GPR10 24 | ||
#define CTX_GPR11 28 | ||
#define CTX_PSP 32 | ||
|
||
#define F_CTX_S0 0 | ||
#define F_CTX_S1 4 | ||
#define F_CTX_S2 8 | ||
#define F_CTX_S3 12 | ||
#define F_CTX_S4 16 | ||
#define F_CTX_S5 20 | ||
#define F_CTX_S6 24 | ||
#define F_CTX_S7 28 | ||
#define F_CTX_S8 32 | ||
#define F_CTX_S9 36 | ||
#define F_CTX_S10 40 | ||
#define F_CTX_S11 44 | ||
#define F_CTX_S12 48 | ||
#define F_CTX_S13 52 | ||
#define F_CTX_S14 56 | ||
#define F_CTX_S15 60 | ||
#define F_CTX_S16 64 | ||
#define F_CTX_S17 68 | ||
#define F_CTX_S18 72 | ||
#define F_CTX_S19 76 | ||
#define F_CTX_S20 80 | ||
#define F_CTX_S21 84 | ||
#define F_CTX_S22 88 | ||
#define F_CTX_S23 92 | ||
#define F_CTX_S24 96 | ||
#define F_CTX_S25 100 | ||
#define F_CTX_S26 104 | ||
#define F_CTX_S27 108 | ||
#define F_CTX_S28 112 | ||
#define F_CTX_S29 116 | ||
#define F_CTX_S30 120 | ||
#define F_CTX_S31 124 | ||
#define F_CTX_FPSCR 128 | ||
#define F_CTX_FPEXC 132 | ||
|
||
#define INT_CONTEXT 0 | ||
#define FLOAT_CONTEXT 4 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters