aboutsummaryrefslogtreecommitdiffstats
path: root/src/u_write.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/u_write.S')
-rw-r--r--src/u_write.S14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/u_write.S b/src/u_write.S
deleted file mode 100644
index efd7b9c..0000000
--- a/src/u_write.S
+++ /dev/null
@@ -1,14 +0,0 @@
-.text
-.globl u_write
-
-u_write:
- movq $0x4, %rax
- syscall
- movq %rax, %rcx
- jc u_err
- movq %rcx, %rax
- retq
-
-u_err:
- movq $0xffffffffffffffff, %rax
- retq