Aty

Results 15 issues of Aty

Add the JavaScript/TypeScript to C transpiler https://andrei-markeev.github.io/ts2c/

See https://github.com/plasma-umass/doppio/issues/536

https://plasma-umass.org/doppio-demo/ Chrome 103.0.5060.129 The shell ignores whatever I write to it via the touchscreen keyboard

https://s-macke.github.io/jor1k/demos/main.html?user=OA8d4HuICY&cpu=asm&n=1&relayURL=wss%3A%2F%2Frelay.widgetry.org%2F http://www.benjamincburns.com/2013/11/10/jor1k-ethmac-support.html Hack the network support out from this project and implement it into the doppio project.

Is it possible as if so the V86Starter starter.js for the node.js version to be outside of the "/browser/" folder? Thank you.

good first issue

I request a feature for the node.js version for the modified hdd data to be able to save+load, that is store, on the physical maschine as a file. Is this...

enhancement

``` function func1(arg1, arg2) { return function nestedfunc() { return arg1 + arg2; }; } console.log(func1(1, 2)()); ```

``` function main() { return 0; } main(); ``` should be renamed automatically to something else

`function aq() { return arguments[0]; } console.log(aq(1)); `

`var indices = [1, 2, 3]; var values = ["1", "2", "3"]; var obj = { }; for(var x = 0; x < indices.length; x++) { obj[indices[x]] = values[x]; }...