-
Notifications
You must be signed in to change notification settings - Fork 26
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
6 changed files
with
55 additions
and
11 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([assemblyline],[1.3.1-rc.2],[[email protected]]) | ||
AC_INIT([assemblyline],[1.3.1-rc.3],[[email protected]]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_SRCDIR([src/assemblyline.c]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
|
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,23 @@ | ||
push rax | ||
push rcx | ||
push rdx | ||
push r8 | ||
push r9 | ||
push r10 | ||
mov rcx, 0x637ea511 | ||
mov rdx, 0x637ea4d1 | ||
mov r8, 0x637ea4f1 | ||
mov r9, 0x0 | ||
push 0x0 | ||
push 0x0 | ||
mov r10, 0x61813ff0 | ||
call r10 | ||
pop rcx | ||
pop rcx | ||
pop r10 | ||
pop r9 | ||
pop r8 | ||
pop rdx | ||
pop rcx | ||
pop rax | ||
ret |
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,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
# error out on any error | ||
set -e | ||
|
||
tool=./tools/asmline | ||
# should not error out without option to '-r' | ||
${tool} -r <<EOF | ||
ret | ||
EOF | ||
|
||
# should not error out without option to '-P /dev/stdout' | ||
|
||
${tool} -P /dev/stdout <<EOF | ||
ret | ||
EOF |
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