This website requires JavaScript.
Explore
Help
Sign In
hheik
/
xv6-riscv-rust
Watch
1
Star
0
Fork
You've already forked xv6-riscv-rust
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
df5cc91659
xv6-riscv-rust
/
user1.c
14 lines
96 B
C
Raw
Blame
History
void
fork
(
)
{
asm
(
"
mov $1, %eax
"
)
;
asm
(
"
int $48
"
)
;
}
main
(
)
{
fork
(
)
;
while
(
1
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink