Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 942 Bytes

README.md

File metadata and controls

44 lines (32 loc) · 942 Bytes

libasm

Info

The aim of this project is to get familiar with assembly language by reconding a few libc functions for MACOS x86_64 assembly.

  • Status: finished
  • Result: 100%
  • Observations: for macho64 nasm

developed by: izenynn

List of functions

ft_strlen man 3 strlen
ft_strcpy man 3 strcpy
ft_strcmp man 3 strcmp
ft_write man 2 write
ft_read man 2 read
ft_strdup man 3 strdup

Usage

Compile the package:

make

To test the results, issue:

make check

To use it just copy and compile with the libasm.a, e.g.:

gcc main.c -lasm -L.

forthebadge forthebadge