summaryrefslogtreecommitdiff
path: root/usys.S
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2018-10-09 19:33:06 -0400
committerFrans Kaashoek <[email protected]>2018-10-09 19:33:06 -0400
commit821ee3fc99b6363d7799d4f5cfa629e36b554dbf (patch)
tree6ebb7d631acfb00d140efac8fc931b6553aac8d7 /usys.S
parent54e6f829e4019e10734588b9ba63c2c186c94f8e (diff)
downloadxv6-labs-821ee3fc99b6363d7799d4f5cfa629e36b554dbf.tar.gz
xv6-labs-821ee3fc99b6363d7799d4f5cfa629e36b554dbf.tar.bz2
xv6-labs-821ee3fc99b6363d7799d4f5cfa629e36b554dbf.zip
not much
Diffstat (limited to 'usys.S')
-rw-r--r--usys.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/usys.S b/usys.S
index e62f3d9..69935e7 100644
--- a/usys.S
+++ b/usys.S
@@ -4,7 +4,7 @@
#define SYSCALL(name) \
.globl name; \
name: \
- movl $SYS_ ## name, %eax; \
+ mov $SYS_ ## name, %rax; \
syscall; \
ret