Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exercism/x86-64-assembly
Exercism exercises in x86-64 Assembly.
https://github.com/exercism/x86-64-assembly
community-contributions-paused exercism-track
Last synced: about 1 month ago
JSON representation
Exercism exercises in x86-64 Assembly.
- Host: GitHub
- URL: https://github.com/exercism/x86-64-assembly
- Owner: exercism
- License: mit
- Created: 2019-02-26T00:46:47.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T08:24:39.000Z (7 months ago)
- Last Synced: 2024-05-23T09:37:57.288Z (7 months ago)
- Topics: community-contributions-paused, exercism-track
- Language: Assembly
- Homepage: https://exercism.org/tracks/x86-64-assembly
- Size: 387 KB
- Stars: 23
- Watchers: 11
- Forks: 19
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Exercism x86-64 Assembly Track
[![Configlet Status](https://github.com/exercism/x86-64-assembly/workflows/configlet/badge.svg)](https://github.com/exercism/x86-64-assembly/actions/workflows/configlet.yml)
[![Exercise Test Status](https://github.com/exercism/x86-64-assembly/workflows/x86-64-assembly%20%2F%20main/badge.svg)](https://github.com/exercism/x86-64-assembly/actions/workflows/ci.yml)Exercism exercises in x86-64 Assembly.
## NASM
NASM (The Netwide Assembler) is the assembler used by this track. It's a
popular assembler with a syntax that is simple and easy to understand.## Unity
Unity is a simple unit testing framework for C used by this track. Using a
framework written in C instead of assembly language is easier to understand. It
also shows how parameters are passed when calling assembly routines from C.## Calling conventions
There are two calling conventions in common use for x86-64. The Microsoft x64
calling convention, and the System V AMD64 ABI. Support is only provided for
the latter. This will spare mentors the trouble of having to switch between the
two.## Generating test cases
To create a test generator, add a .py file to the generators/exercises folder
with the name of the exercise. See [leap.py](https://github.com/exercism/x86-64-assembly/blob/master/generators/exercises/leap.py) for an example.Generate the test cases with the following command:
```bash
./generators/generate
```## Contributing Guide
Please see the [contributing guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).