Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1581)

Side by Side Diff: fusl/src/internal/microblaze/syscall.s

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/internal/locale_impl.h ('k') | fusl/src/internal/mips/syscall.s » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .global __syscall
2 .hidden __syscall
3 .type __syscall,@function
4 __syscall:
5 addi r12, r5, 0 # Save the system call number
6 add r5, r6, r0 # Shift the arguments, arg1
7 add r6, r7, r0 # arg2
8 add r7, r8, r0 # arg3
9 add r8, r9, r0 # arg4
10 add r9, r10, r0 # arg5
11 lwi r10, r1, 28 # Get arg6.
12 brki r14, 0x8 # syscall
13 rtsd r15, 8
14 nop
OLDNEW
« no previous file with comments | « fusl/src/internal/locale_impl.h ('k') | fusl/src/internal/mips/syscall.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698