├── .htaccess ├── LICENSE ├── README.md ├── boot.xhtml ├── compare.xhtml ├── debugger.css ├── debugger.xhtml ├── doc ├── dev-diary.html └── fffe0130.txt ├── images ├── jsx-sad.png ├── jsx.png └── supported-browsers │ ├── chrome.png │ ├── firefox.png │ ├── opera.png │ └── safari.png ├── index.xhtml ├── js ├── boot.js ├── common.js ├── compare.js ├── core │ ├── asm.js │ ├── compiled.js │ ├── counters.js │ ├── disasm.js │ ├── gpu-old.js │ ├── gpu.js │ ├── hwregs.js │ ├── mdec.js │ ├── memory.js │ ├── parallel.js │ ├── psx.js │ ├── r3000a.js │ ├── recompiler.js │ └── spu.js ├── debugger │ ├── branch-comparator.js │ ├── breakpoint-table.js │ ├── breakpoint.js │ ├── continuous-comparator.js │ ├── debugger.js │ ├── disasm-table.js │ └── glue.js ├── jsx.js ├── tests.js └── webgl-debug.js ├── jsx.css └── tests.xhtml /.htaccess: -------------------------------------------------------------------------------- 1 | allow from all -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/README.md -------------------------------------------------------------------------------- /boot.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/boot.xhtml -------------------------------------------------------------------------------- /compare.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/compare.xhtml -------------------------------------------------------------------------------- /debugger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/debugger.css -------------------------------------------------------------------------------- /debugger.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/debugger.xhtml -------------------------------------------------------------------------------- /doc/dev-diary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/doc/dev-diary.html -------------------------------------------------------------------------------- /doc/fffe0130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/doc/fffe0130.txt -------------------------------------------------------------------------------- /images/jsx-sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/images/jsx-sad.png -------------------------------------------------------------------------------- /images/jsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/images/jsx.png -------------------------------------------------------------------------------- /images/supported-browsers/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/images/supported-browsers/chrome.png -------------------------------------------------------------------------------- /images/supported-browsers/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/images/supported-browsers/firefox.png -------------------------------------------------------------------------------- /images/supported-browsers/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/images/supported-browsers/opera.png -------------------------------------------------------------------------------- /images/supported-browsers/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/images/supported-browsers/safari.png -------------------------------------------------------------------------------- /index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/index.xhtml -------------------------------------------------------------------------------- /js/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/boot.js -------------------------------------------------------------------------------- /js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/common.js -------------------------------------------------------------------------------- /js/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/compare.js -------------------------------------------------------------------------------- /js/core/asm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/asm.js -------------------------------------------------------------------------------- /js/core/compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/compiled.js -------------------------------------------------------------------------------- /js/core/counters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/counters.js -------------------------------------------------------------------------------- /js/core/disasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/disasm.js -------------------------------------------------------------------------------- /js/core/gpu-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/gpu-old.js -------------------------------------------------------------------------------- /js/core/gpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/gpu.js -------------------------------------------------------------------------------- /js/core/hwregs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/hwregs.js -------------------------------------------------------------------------------- /js/core/mdec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/mdec.js -------------------------------------------------------------------------------- /js/core/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/memory.js -------------------------------------------------------------------------------- /js/core/parallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/parallel.js -------------------------------------------------------------------------------- /js/core/psx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/psx.js -------------------------------------------------------------------------------- /js/core/r3000a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/r3000a.js -------------------------------------------------------------------------------- /js/core/recompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/recompiler.js -------------------------------------------------------------------------------- /js/core/spu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/core/spu.js -------------------------------------------------------------------------------- /js/debugger/branch-comparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/branch-comparator.js -------------------------------------------------------------------------------- /js/debugger/breakpoint-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/breakpoint-table.js -------------------------------------------------------------------------------- /js/debugger/breakpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/breakpoint.js -------------------------------------------------------------------------------- /js/debugger/continuous-comparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/continuous-comparator.js -------------------------------------------------------------------------------- /js/debugger/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/debugger.js -------------------------------------------------------------------------------- /js/debugger/disasm-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/disasm-table.js -------------------------------------------------------------------------------- /js/debugger/glue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/debugger/glue.js -------------------------------------------------------------------------------- /js/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/jsx.js -------------------------------------------------------------------------------- /js/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/tests.js -------------------------------------------------------------------------------- /js/webgl-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/js/webgl-debug.js -------------------------------------------------------------------------------- /jsx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/jsx.css -------------------------------------------------------------------------------- /tests.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fay59/jsx/HEAD/tests.xhtml --------------------------------------------------------------------------------