ChinYikMing
ChinYikMing
`/vehicle/status/turn_indicators_status` topic should relevant to the status of turn indicators. Moreover, `/vehicle/status/velocity_Status` should be `/vehicle/status/velocity_status`
This change is [](https://reviewable.io/reviews/carla-simulator/ros-bridge/710)
WebAssembly is capable to port rv32emu to browser. Then, I would like to test the WebAssembly translation of the semu codebase to see if kernels (like Linux or xv6) can...
To enhance the user experience of using WebAssembly version of rv32emu, we shall provide a Makefile target (serve-wasm) to serve the WebAssembly demo page in an easy way. Since rv32emu...
First trial of refactoring, the [wasm branch](https://github.com/ChinYikMing/rv32emu/tree/wasm)'s latest commit is the result. Since `state_t` is a user-provided data, so all runtime defined value(often change) shall be stored there. For instance,...
The purpose of this commit is to boot 32-bit RISC-V Linux in the future. The virtual memory scheme to support is Sv32. There are one change to original code base...
Trap might occurs during block emulation, for example, page fault. In order to handle trap, we have to temporarily escape from block and jump to the trap handler to handle...
The Wasm deployment only runs when following files are updated: ``` files: | assets/html/index.html assets/js/pre.js build/*.elf ``` Updates to the core C files should also initiate deployment, as these changes...