Put MAX_SYSCALLS in hex to match syscalls list

This commit is contained in:
Justin C. Miller
2019-04-09 23:35:32 -07:00
parent 070be0b005
commit fd1adc0262
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ enum class syscall : uint64_t
// Maximum syscall id. If you change this, also change
// MAX_SYSCALLS in syscall.s
MAX = 64
MAX = 0x40
};
void syscall_enable();