deleting line
[sped.git] / utils.S
diff --git a/utils.S b/utils.S
deleted file mode 100644 (file)
index 5c09a23..0000000
--- a/utils.S
+++ /dev/null
@@ -1,18 +0,0 @@
-
-%ifndef __UTILS_S__
-%define __UTILS_S__
-
-; gets the nth string ptr in a str array
-; of the form: str_offset buffer, n
-; result is in eax
-%macro str_offset 2
-    mov eax, %2
-    mov ecx, 4
-    mul ecx
-    add eax, DWORD %1
-%endmacro
-
-extern shiftLeft
-extern shiftRight
-
-%endif