Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
; x86_64 Linux NASM
|
||||
; Linked_List_Definition.asm
|
||||
|
||||
%ifndef LinkedListDefinition
|
||||
%define LinkedListDefinition
|
||||
|
||||
struc link
|
||||
value: resd 1
|
||||
next: resq 1
|
||||
linkSize:
|
||||
endstruc
|
||||
|
||||
%endif
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
struct link
|
||||
.next: resd 1
|
||||
.data: resd 1
|
||||
endstruc
|
||||
|
|
@ -0,0 +1 @@
|
|||
link resb 16
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
link struct
|
||||
next dd ?
|
||||
data dd ?
|
||||
link ends
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
struc link next,data
|
||||
{
|
||||
.next dd next
|
||||
.data dd data
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue