13 lines
180 B
Text
13 lines
180 B
Text
; x86_64 Linux NASM
|
|
; Linked_List_Definition.asm
|
|
|
|
%ifndef LinkedListDefinition
|
|
%define LinkedListDefinition
|
|
|
|
struc link
|
|
value: resd 1
|
|
next: resq 1
|
|
linkSize:
|
|
endstruc
|
|
|
|
%endif
|