From b3afbbe591e268caa37bf007fac4e919ce0ca48a Mon Sep 17 00:00:00 2001 From: Benjamin Landers Date: Fri, 10 Jul 2020 16:27:02 -0700 Subject: [PATCH] Fix missing register in syscall description --- src/rars/riscv/syscalls/SyscallTime.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rars/riscv/syscalls/SyscallTime.java b/src/rars/riscv/syscalls/SyscallTime.java index 80967151..02ed400e 100644 --- a/src/rars/riscv/syscalls/SyscallTime.java +++ b/src/rars/riscv/syscalls/SyscallTime.java @@ -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
high order 32 bits"); + super("Time", "Get the current time (milliseconds since 1 January 1970)", "N/A", "a0 = low order 32 bits
a1=high order 32 bits"); } public void simulate(ProgramStatement statement) {