A shell that runs x86_64 assembly
Find a file
2023-04-03 21:09:39 +02:00
docs Adds doxygen documentation generation to autotools 2023-03-29 18:11:24 +02:00
tests Implements a small breakpoint lib 2023-04-03 19:35:34 +02:00
.gitignore Add gitignore 2023-03-07 11:51:27 +01:00
asm_env.c Implements a .breakpoint command 2023-04-03 21:09:27 +02:00
asm_env.h Implements a .breakpoint command 2023-04-03 21:09:27 +02:00
asmsh.c Makes the log function & macros variadic 2023-03-22 21:38:08 +01:00
asmsh.h Implements a .breakpoint command 2023-04-03 21:09:27 +02:00
asmsh.s Initial commit 2023-02-10 14:12:58 +01:00
AUTHORS Adds license notice 2023-03-07 12:17:42 +01:00
breakpoints.c Implements a small breakpoint lib 2023-04-03 19:35:34 +02:00
breakpoints.h Implements a small breakpoint lib 2023-04-03 19:35:34 +02:00
ChangeLog Autotools + check 2023-02-10 17:25:46 +01:00
child.s Adds license notice 2023-03-07 12:17:42 +01:00
compile.c Bugfix in as stderr logging 2023-03-31 10:53:01 +02:00
compile.h Commenting + man generation 2023-03-29 18:11:59 +02:00
completion.c Bugfix command completion 2023-03-12 20:57:28 +01:00
completion.h Add command completion 2023-03-12 20:18:07 +01:00
config.h.in Implements (untested not debuged) child embeding 2023-03-08 19:49:32 +01:00
configure.ac Adds doxygen documentation generation to autotools 2023-03-29 18:11:24 +02:00
COPYING.gz Adds license notice 2023-03-07 12:17:42 +01:00
history.c Suppress more warning and add a lint target 2023-03-08 21:31:52 +01:00
history.h Implementing history load/store 2023-03-08 19:49:04 +01:00
logger.c Bugfix in as stderr logging 2023-03-31 10:53:01 +02:00
logger.h Make the asmsh_log_perror() macro non variadic again ;) 2023-04-03 21:09:39 +02:00
Makefile.am Implements a .breakpoint command 2023-04-03 21:09:27 +02:00
mmap_parse.c Suppress all compilation warnings 2023-03-08 20:18:05 +01:00
mmap_parse.h Suppress more warning and add a lint target 2023-03-08 21:31:52 +01:00
NEWS Autotools + check 2023-02-10 17:25:46 +01:00
README Initial commit 2023-02-10 14:12:58 +01:00
regen.sh Adds doxygen documentation generation to autotools 2023-03-29 18:11:24 +02:00
shell.c Commenting + man generation 2023-03-29 18:11:59 +02:00
shell.h Bugfix env update in shell & delete the bytecode print when exec 2023-03-07 15:17:41 +01:00
shell_cmd_breakpoint.c Implements a .breakpoint command 2023-04-03 21:09:27 +02:00
shell_cmds.c Adds a .step command 2023-03-31 23:48:13 +02:00
shell_cmds.h Implements a .breakpoint command 2023-04-03 21:09:27 +02:00
shell_sym.c Implement new .bytecode command 2023-03-07 15:59:11 +01:00
shell_sym.h Adds license notice 2023-03-07 12:17:42 +01:00
syscalls.h First implementation of a .syscalls command 2023-03-12 22:40:07 +01:00

asmsh

An assembly shell.

Interactively run assembly into a terminal emulator.

Uses ptrace syscall to achieve this.