Jim Huang

Results 411 comments of Jim Huang

> Do you think it is okay for me to write a test program "test_csr.c" with Makefile to test performance? Or do you think I shall try to use unit...

> What should I do to use `syscall_gettimeofday()` in emulate.c without using `#include "syscall.c"`? You can decouple the common part into a dedicated utility source file. Let's say, `utils.[ch]`, and...

> I cannot `#include "utils.h"` in both emulate.c and syscall.c it will show the following error message You have to tweak `Makefile` accordingly.

Apply the following change: ```diff diff --git a/Makefile b/Makefile index 37c8c38..cce99d0 100644 --- a/Makefile +++ b/Makefile @@ -95,6 +95,7 @@ all: $(BIN) OBJS := \ map.o \ + utils.o \...

> How should I test program counters? I should try to implement something in assembly to check the usage of `csr_csrrs(*rv, CSR_TIME, 0` right? You can simply write RISC-V assembly...

> Notes: > * Assembly not fully working. > * Successfully create main and loop. > * Working on csr instructions and print You don't have to print out the...

> > Notes: > > > > * Assembly not fully working. > > * Successfully create main and loop. > > * Working on csr instructions and print >...

Close in favor of commit 53a6f9463c4b344746cb1154cbfb995e44f30300

@mikedorin, You can try [virt_wifi](https://github.com/torvalds/linux/blob/master/drivers/net/wireless/virt_wifi.c), a fake implementation of `cfg80211_ops` that can be tacked on to an ethernet `net_device` to make it appear as a wireless connection.

> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=989523 I thought the subject of the submitted Debian package was misleading -- `Nanosaur` is not an open source project by definition. Pangea Software released the source code with...