Skip to content

A starter project for building and running x64 architecture assembly language projects on Linux (and MacOS).

License

Notifications You must be signed in to change notification settings

CSCI2050U/BaseX64LinuxAssembly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Base x64 Linux Assembly

A starter project for building and running x64 architecture assembly language projects on Linux.

Software Installation

Before you install any packages in Ubuntu, it is a good idea to update the package lists using the following command:

sudo apt update

This starter project uses the yasm assembler, the gcc compiler/linker, and the make build tool. Even though it is not required to use this project, it is also recommended that you install gdb, which is a text-based debugger.

These tools can be installed with the following command:

sudo apt install yasm build-essential gdb

Building the Program

The following command runs the assembler and links the resulting object code:

make

Running the Program

The following command runs the assembler and links the resulting object code:

./main.out

Cleaning Up

The following command deletes the binary files generated during the build process:

make clean

About

A starter project for building and running x64 architecture assembly language projects on Linux (and MacOS).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published