From 6989c3e067e66c7ce6b7b7e130a5af37d42a32d4 Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Tue, 16 Dec 2025 22:36:08 +0000 Subject: [PATCH] Link to big-endian fork --- doc/syscall.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syscall.md b/doc/syscall.md index fbaac4d..8150b89 100644 --- a/doc/syscall.md +++ b/doc/syscall.md @@ -17,7 +17,7 @@ Both arguments and the return type are `uint32_t` meaning they are large enough To do anything useful, VM code must make syscalls and you will likely need to define some which make sense for your application. -(**Note**, uvm32 assumes that hosts are the same endianness as the vm - little endian. If this is not the case, you will have a bad time, patches welcome...) +(**Note**, uvm32 assumes that hosts are the same endianness as the vm - little endian. If this is not the case, you will have a bad time, patches welcome... see https://github.com/Vali0004/mini-rv32ima-be/blob/master/mini-rv32ima/mini-rv32ima.h) ## Inbuilt systems