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

https://github.com/officialcjunior/x86-assembly

Some basic programs to get you started with Intel x86 assembly language.
https://github.com/officialcjunior/x86-assembly

assembly-language assembly-x86-64 intel-x86-64 nasm nasm-assembly nasm-language problem-solving x86-assembly x86-nasm

Last synced: 3 months ago
JSON representation

Some basic programs to get you started with Intel x86 assembly language.

Awesome Lists containing this project

README

          

# x86-assembly

These are some programs I wrote in Intel x86 assembly language.

## Setup
To run it, make sure that gcc and nasm are installed.

`sudo apt install build-essential`

`sudo apt install gcc-multilib nasm`

## Compiling

`nasm -f elf filename.asm`

`gcc -m32 filiename.o -o filename`

`./filename`