Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,4 @@
struct link
.next: resd 1
.data: resd 1
endstruc

View file

@ -0,0 +1,4 @@
link struct
next dd ?
data dd ?
link ends

View file

@ -0,0 +1,5 @@
struc link next,data
{
.next dd next
.data dd data
}