You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: add a simpler sample program
Fixes Web UI: load a simpler example by default #1227
* feat: implement stdout for Web UI
Contributes to Web UI: basic SYSCALL support #1224
Standard Input will be more complicated than just having a prompt() call. The Java code runs in a web worker, which does not have access to the window object. I tried using prompt() and alert() and it fails miserably.
We could add a new StdIn section with a text area, and as soon as a character is added to the text area it's sent to the worker as part of the stdin. Then when SYSCALL 3 happens to read from fd 0, it reads from that stdin buffer. This would remove the need for interactive input being triggered by the web worker.
partial SYSCALL support - no File I/O
The text was updated successfully, but these errors were encountered: