An open API service indexing awesome lists of open source software.

https://github.com/dqneo/assembly

My Assembly sandbox
https://github.com/dqneo/assembly

assembly gas linux x86-64

Last synced: about 1 month ago
JSON representation

My Assembly sandbox

Awesome Lists containing this project

README

          

My Assembly sandbox

All `*.s` codes are written in GAS for x86-64 linux so far.

# How to run

```
$ docker run --rm -it -v `pwd`:/mnt -w /mnt dqneo/ubuntu-build-essential:latest bash
root@6b996b01c7b8:/mnt# gcc 01_exit.s
root@6b996b01c7b8:/mnt# ./a.out; echo $?
42
```

If you want to use `gdb`, then run as follows

```
$ docker run --rm -it -v `pwd`:/mnt -w /mnt --cap-add=SYS_PTRACE --security-opt='seccomp=unconfined' dqneo/ubuntu-build-essential:latest bash
```