-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: NA4 address mask lead to region greater than 4 bytes
New: Enhance test2S, testing all region types
- Loading branch information
Showing
12 changed files
with
1,437 additions
and
1,166 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,27 @@ | ||
# distributed under the mit license | ||
# https://opensource.org/licenses/mit-license.php | ||
|
||
.equ OFF, 0 | ||
.equ TOR_RWX, 0x0F | ||
.equ TOR_RW, 0x0B | ||
.equ TOR_RX, 0x0D | ||
.equ NA4_RWX, 0x17 | ||
.equ NA4_RW, 0x13 | ||
.equ NA4_RX, 0x15 | ||
.equ NAPOT_RWX, 0x1F | ||
.equ NAPOT_RW , 0x1B | ||
.equ NAPOT_RX , 0x1D | ||
|
||
.equ TOR_LRWX, 0x8F | ||
.equ TOR_LRW, 0x8B | ||
.equ TOR_LRX, 0x8D | ||
.equ NA4_LRWX, 0x97 | ||
.equ NA4_LRW, 0x93 | ||
.equ NA4_LRX, 0x95 | ||
.equ NAPOT_LRWX, 0x9F | ||
.equ NAPOT_LRW , 0x9B | ||
.equ NAPOT_LRX , 0x9D | ||
|
||
.equ TOR, 0x08 | ||
.equ NA4, 0x10 | ||
.equ NAPOT, 0x18 |
Oops, something went wrong.