-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
1 parent
f9f75b6
commit e00b93d
Showing
52 changed files
with
13,886 additions
and
21,259 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Suponiendo que has guardado el código en un archivo llamado `write_syscall.s`, puedes ensamblarlo usando `as` (el ensamblador de GNU) de la siguiente manera: | ||
|
||
```bash | ||
as -o write_syscall.o write_syscall.s | ||
``` |
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,7 @@ | ||
|
||
- `-m` : Establecer emulación de destino | ||
- `-o` : Salida | ||
|
||
```sh | ||
ld -m <> <file.o> -o file | ||
``` |
8 changes: 6 additions & 2 deletions
8
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/N/nasm.md
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
|
||
Crear un fichero fuente en lenguaje ensamblador | ||
# Crear un fichero fuente en lenguaje ensamblador | ||
|
||
- `-f` : Formato de salida | ||
- `-o` : Nombre de salida | ||
|
||
```sh | ||
nasm -f elf64 hello.asm -o hello.o | ||
ld hello.o -o hello | ||
|
||
``` |
2 changes: 1 addition & 1 deletion
2
.deb/i-haklab/home/.local/etc/i-Haklab/Tools/Readme/S/strace.md
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 |
---|---|---|
@@ -1 +1 @@ | ||
Nos permite ver las llamadas a sistema | ||
- Nos permite ver las llamadas a sistema |
Empty file.
Oops, something went wrong.