deleting line
[sped.git] / macros.S
similarity index 69%
rename from utils.S
rename to macros.S
index 5c09a23..afde07d 100644 (file)
--- a/utils.S
+++ b/macros.S
@@ -2,6 +2,14 @@
 %ifndef __UTILS_S__
 %define __UTILS_S__
 
+%macro write_str 2
+    mov eax, 4
+    mov ebx, 1
+    mov ecx, %1
+    mov edx, %2
+    int 0x80
+%endmacro
+
 ; gets the nth string ptr in a str array
 ; of the form: str_offset buffer, n
 ; result is in eax
@@ -12,7 +20,4 @@
     add eax, DWORD %1
 %endmacro
 
-extern shiftLeft
-extern shiftRight
-
 %endif