summaryrefslogtreecommitdiff
path: root/src/nonstd/x86-32.s
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-12 12:52:58 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-12 12:52:58 -0400
commit60c3831e53b7afa5dd372601250e7e8739329383 (patch)
tree56524ad67c32ed4bf4aa24ab06b310e5b1b5d542 /src/nonstd/x86-32.s
parent4d4132eaebe78939ee32e2dd9139913df7665bea (diff)
move more stuff out of nonstd/
Diffstat (limited to 'src/nonstd/x86-32.s')
-rw-r--r--src/nonstd/x86-32.s18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/nonstd/x86-32.s b/src/nonstd/x86-32.s
deleted file mode 100644
index ad60201d..00000000
--- a/src/nonstd/x86-32.s
+++ /dev/null
@@ -1,18 +0,0 @@
-.global __syscall
-__syscall:
- mov 4(%esp), %eax
- mov 8(%esp), %ebx
- mov 12(%esp), %ecx
- mov 16(%esp), %edx
- mov 20(%esp), %esi
- mov 24(%esp), %edi
- mov 28(%esp), %ebp
- sysenter
- ret
-
-/* FIXME: this seems to be unpossible to put in a shared library */
-/* FIXME: it may be worthwhile to separate this into crt1.s */
-.global _start
-_start:
- /* TODO */
- call __libc_start