/Linked-list-in-assembly--nasm-

This is a linked list of characters (can be tweaked to represent any kind of data). It is implemented in the assembly language, using the nasm assembler and Intel syntax.

linked.s:
Linked list implemented in assembly language.
It is assembled using the nasm compiler and Intel syntax.
Uses Linux standard C library functions.
The list can also act as a tail - added pop procedure.

asm.sh:
Script to assemble a file using nasm and link it using gcc.