Skip to content

Commit

Permalink
Fix missing register in syscall description
Browse files Browse the repository at this point in the history
  • Loading branch information
TheThirdOne committed Jul 10, 2020
1 parent ce16f26 commit b3afbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rars/riscv/syscalls/SyscallTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ a copy of this software and associated documentation files (the

public class SyscallTime extends AbstractSyscall {
public SyscallTime() {
super("Time", "Get the current time (milliseconds since 1 January 1970)", "N/A", "a0 = low order 32 bits<br>high order 32 bits");
super("Time", "Get the current time (milliseconds since 1 January 1970)", "N/A", "a0 = low order 32 bits<br>a1=high order 32 bits");
}

public void simulate(ProgramStatement statement) {
Expand Down

0 comments on commit b3afbbe

Please sign in to comment.