https://github.com/demkeys/x86_64assemblyattgasexamples
x86_64 Assembly examples written in AT&T GAS Syntax.
https://github.com/demkeys/x86_64assemblyattgasexamples
assembly assembly-language assembly-x86-64 code-examples gas infosec library-calls linux linux-syscall low-level programming system-calls x86 x86-assembly x86-x64
Last synced: 27 days ago
JSON representation
x86_64 Assembly examples written in AT&T GAS Syntax.
- Host: GitHub
- URL: https://github.com/demkeys/x86_64assemblyattgasexamples
- Owner: Demkeys
- Created: 2018-06-10T04:52:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T12:00:05.000Z (over 6 years ago)
- Last Synced: 2025-04-07T03:25:35.618Z (about 2 months ago)
- Topics: assembly, assembly-language, assembly-x86-64, code-examples, gas, infosec, library-calls, linux, linux-syscall, low-level, programming, system-calls, x86, x86-assembly, x86-x64
- Language: Assembly
- Size: 367 KB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# x86_64 Assembly AT&T GAS Syntax Examples #
This repo contains x86_64 Assembly examples written in AT&T GAS Syntax.
All of the code is meant to be assembled, linked and run on a Linux OS.### Index ###
* #### System Calls ####
* [Read and Write](https://github.com/Demkeys/x86_64AssemblyATTGASExamples/tree/master/SystemCalls/ReadAndWrite)
* [Open and Read File (using only system calls)](https://github.com/Demkeys/x86_64AssemblyATTGASExamples/tree/master/SystemCalls/OpenAndReadFile)
* #### Library Calls ####
* [System](https://github.com/Demkeys/x86_64AssemblyATTGASExamples/tree/master/LibraryCalls/System)
* #### My Projects ####
* [Encrypt And Decrypt File](https://github.com/Demkeys/x86_64AssemblyATTGASExamples/tree/master/MyProjects/EncryptAndDecryptFile)