-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: scripts/Makefile.am
- Loading branch information
Showing
19 changed files
with
262 additions
and
70 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -78,6 +78,7 @@ AC_CONFIG_FILES([ | |
docs/Makefile | ||
docs/manual/Makefile | ||
docs/x86/Makefile | ||
tests/difftest.sh | ||
]) | ||
|
||
AC_OUTPUT |
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 |
---|---|---|
|
@@ -4217,6 +4217,7 @@ | |
<def> | ||
<opc>eb</opc> | ||
<opr>Jb</opr> | ||
<mode>def64</mode> | ||
</def> | ||
</instruction> | ||
|
||
|
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
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ MAINTAINERCLEANFILES = Makefile.in | |
|
||
clean-local: | ||
-rm -f *.pyc | ||
-rm -f ud_yasmtest* | ||
-rm -f ud_asmtest* |
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,3 @@ | ||
[bits 32] | ||
mov eax, 0x1234 | ||
mov eax, [0x1234] |
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,2 @@ | ||
0000000000000000 b834120000 mov $0x1234, %eax | ||
0000000000000005 a134120000 mov 0x1234, %eax |
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,2 @@ | ||
0000000000000000 b834120000 mov eax, 0x1234 | ||
0000000000000005 a134120000 mov eax, [0x1234] |
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,24 @@ | ||
[bits 32] | ||
[org 0x80000000] | ||
|
||
l1: | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
|
||
jmp l1 | ||
nop | ||
jmp word l2 | ||
|
||
nop | ||
nop | ||
jmp dword l2 | ||
nop | ||
nop | ||
nop | ||
l2: | ||
nop | ||
nop | ||
jmp l1 |
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,17 @@ | ||
0000000080000000 90 nop | ||
0000000080000001 90 nop | ||
0000000080000002 90 nop | ||
0000000080000003 90 nop | ||
0000000080000004 90 nop | ||
0000000080000005 ebf9 jmp 0x80000000 | ||
0000000080000007 90 nop | ||
0000000080000008 66e90a00 jmp 0x16 | ||
000000008000000c 90 nop | ||
000000008000000d 90 nop | ||
000000008000000e e903000000 jmp 0x80000016 | ||
0000000080000013 90 nop | ||
0000000080000014 90 nop | ||
0000000080000015 90 nop | ||
0000000080000016 90 nop | ||
0000000080000017 90 nop | ||
0000000080000018 ebe6 jmp 0x80000000 |
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,24 @@ | ||
[bits 64] | ||
[org 0x8000000000000000] | ||
|
||
l1: | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
|
||
jmp l1 | ||
nop | ||
jmp word l2 | ||
|
||
nop | ||
nop | ||
jmp dword l2 | ||
nop | ||
nop | ||
nop | ||
l2: | ||
nop | ||
nop | ||
jmp l1 |
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,17 @@ | ||
8000000000000000 90 nop | ||
8000000000000001 90 nop | ||
8000000000000002 90 nop | ||
8000000000000003 90 nop | ||
8000000000000004 90 nop | ||
8000000000000005 ebf9 jmp 0x8000000000000000 | ||
8000000000000007 90 nop | ||
8000000000000008 66e90a00 jmp 0x16 | ||
800000000000000c 90 nop | ||
800000000000000d 90 nop | ||
800000000000000e e903000000 jmp 0x8000000000000016 | ||
8000000000000013 90 nop | ||
8000000000000014 90 nop | ||
8000000000000015 90 nop | ||
8000000000000016 90 nop | ||
8000000000000017 90 nop | ||
8000000000000018 ebe6 jmp 0x8000000000000000 |
Oops, something went wrong.