Skip to content

implementation of some functions of the C library in assembly x86-64

Notifications You must be signed in to change notification settings

amdjadouxx/minilib_assembleur

Repository files navigation

MINILIB_ASM

This project has been produce for the x86-64 structure (on linux)

Help.md

if you want to start assembly, I made a french documentation on assembly here

This is a shared library, which implement my version (in assembly language) of some functions of the C library

List of functions re-implemented:

  • memcpy
  • memmove
  • memset
  • strcasecmp
  • strchr
  • strcmp
  • strcspn
  • strlen
  • strncmp
  • strpbrk
  • strrchr
  • strstr

How to create the library

  make

Some links

Documentation française

Liens utiles

Tips/Astuces

Réinitialiser tout les registres avant de les utiliser!!

Différents noms de labels entre fonctions d'une même librairie

La stack est comme une pile d'assiette, donc pour lire 1, puis 2, puis 3 --> on pushera 3, puis 2, puis 1

Some useful commands (on linux):

Voir tout les labels dispo dans une librairie:

  nm -D {librairie}

Compile assembly language

```bash
nasm -f elf64 {fichier.asm}

ld {fichier.o}
```

Link some dynamics library when compiling

ld {fichier.o} -lc -dynamic-linker /lib64/ld-linux-x86-64.so.2

About

implementation of some functions of the C library in assembly x86-64

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published