├── .gitignore ├── .jshintrc ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── esbuild.js ├── eslint.config.js ├── examples ├── acme │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── project-config.json │ └── src │ │ ├── data.raw │ │ ├── include.asm │ │ └── main.asm ├── basic │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── project-config.json │ └── src │ │ ├── include.bas │ │ ├── main.bas │ │ └── modern.bas ├── basic_tsb │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── project-config.json │ └── src │ │ └── main.bas ├── cc65 │ ├── .clang-format │ ├── .clang-tidy │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── project-config.json │ └── src │ │ ├── data.raw │ │ ├── include.h │ │ └── main.c ├── kick │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── project-config.json │ └── src │ │ ├── data.raw │ │ └── main.asm ├── llvm │ ├── .clang-format │ ├── .clang-tidy │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── project-config.json │ └── src │ │ ├── assembler.asm │ │ ├── data.raw │ │ ├── include.h │ │ └── main.cpp └── oscar64 │ ├── .clang-tidy │ ├── .gitignore │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── project-config.json │ └── src │ └── main.c ├── jsconfig.json ├── language ├── acme.grammar.json ├── acme.language.json ├── asm.grammar.json ├── asm.language.json ├── asm.snippets.json ├── bas.grammar.json ├── bas.grammar_old.json ├── bas.language.json ├── json.snippets.json ├── kickass.grammar.json └── kickass.language.json ├── media ├── disassembly.css ├── disassembly.js └── vscode.css ├── package.json ├── pylintrc ├── resources ├── icons │ ├── icon.png │ ├── icon_large.png │ ├── icon_large_2.png │ └── logo.pdn ├── ninja │ ├── linux │ │ └── ninja │ ├── mac │ │ └── ninja │ └── win │ │ └── ninja.exe ├── python │ ├── LICENSE.txt │ ├── _asyncio.pyd │ ├── _bz2.pyd │ ├── _ctypes.pyd │ ├── _decimal.pyd │ ├── _elementtree.pyd │ ├── _hashlib.pyd │ ├── _lzma.pyd │ ├── _msi.pyd │ ├── _multiprocessing.pyd │ ├── _overlapped.pyd │ ├── _queue.pyd │ ├── _socket.pyd │ ├── _sqlite3.pyd │ ├── _ssl.pyd │ ├── _uuid.pyd │ ├── _zoneinfo.pyd │ ├── libcrypto-1_1.dll │ ├── libffi-7.dll │ ├── libssl-1_1.dll │ ├── pyexpat.pyd │ ├── python.cat │ ├── python.exe │ ├── python3.dll │ ├── python310._pth │ ├── python310.dll │ ├── python310.zip │ ├── pythonw.exe │ ├── select.pyd │ ├── sqlite3.dll │ ├── unicodedata.pyd │ ├── vcruntime140.dll │ ├── vcruntime140_1.dll │ └── winsound.pyd ├── templates │ ├── acme │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── project-config.json │ │ └── src │ │ │ └── main.asm │ ├── basic │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ └── src │ │ │ └── main.bas │ ├── cc65 │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ └── src │ │ │ └── main.c │ ├── kick │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ └── src │ │ │ └── main.asm │ ├── llvm │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ └── src │ │ │ └── main.cpp │ └── oscar64 │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ └── src │ │ └── main.c └── walkthroughs │ ├── acme.md │ ├── acme.png │ ├── acme_config.png │ ├── c64.png │ ├── cc65.md │ ├── cc65.png │ ├── cc65_config.png │ ├── charpad.png │ ├── features.svg │ ├── kick.md │ ├── kick.png │ ├── kick_config.png │ ├── llvm.md │ ├── llvm.png │ ├── llvm_config.png │ ├── project.md │ ├── project_create1.png │ ├── project_create2.png │ ├── python_powered.png │ ├── resource_compiler.md │ ├── spritemate.png │ ├── spritepad.png │ ├── step1.md │ ├── vice.md │ ├── vice.png │ ├── vice_launch.png │ ├── welcome.md │ └── welcome.png ├── src ├── builder │ └── builder.js ├── debugger │ ├── debug.js │ ├── debug_context.js │ ├── debug_helper.js │ ├── debug_info.js │ ├── debug_info_acme.js │ ├── debug_info_basic.js │ ├── debug_info_cc65.js │ ├── debug_info_elf.js │ ├── debug_info_kick.js │ ├── debug_info_oscar64.js │ ├── debug_info_types.js │ ├── debug_memory.js │ ├── debug_session.js │ ├── debug_state.js │ ├── debug_variables.js │ ├── debug_vice.js │ ├── debug_x16.js │ └── profiler.js ├── disassembler │ ├── disassembler.js │ └── opcodes.js ├── disk │ ├── d64_filesystem_provider.js │ └── disk.js ├── elf │ ├── abbreviation_table.js │ ├── address_table.js │ ├── debug_info.js │ ├── debug_line.js │ ├── deserializer.js │ ├── elf.js │ ├── section.js │ ├── string_offset_table.js │ ├── string_table.js │ ├── symbol_table.js │ └── types.js ├── emulator │ ├── cpu.js │ ├── emu.js │ ├── opcodes.js │ └── roms │ │ ├── 1541.js │ │ ├── 1541.rom │ │ ├── basic.js │ │ ├── basic.rom │ │ ├── char.js │ │ ├── char.rom │ │ ├── fastkernal.rom │ │ ├── kernal.js │ │ └── kernal.rom ├── extension │ ├── diagnostic_provider.js │ ├── disassembler_view.js │ ├── extension.js │ ├── intellisense.js │ ├── main.js │ ├── statusbar.js │ └── task_provider.js ├── language │ ├── language_asm.js │ ├── language_base.js │ ├── language_basic.js │ ├── language_provider.js │ └── language_server.js ├── project │ ├── ninja.js │ ├── project.js │ ├── project_types.js │ ├── scanner.js │ └── toolkit.js ├── settings │ └── settings.js └── utilities │ ├── args.js │ ├── cache.js │ ├── expression.js │ ├── formatter.js │ ├── logger.js │ ├── net.js │ ├── sorted_array.js │ ├── stop_watch.js │ └── utils.js ├── test ├── args.test.js ├── basic │ ├── include.bas │ ├── main.bas │ ├── main2.bas │ ├── main3.bas │ ├── main4.bas │ ├── main5.bas │ ├── main6.bas │ ├── out.prg │ └── then.bas ├── builder.test.js ├── data │ ├── acmedebug.report │ ├── cc65debug.dbg │ ├── cmodule.c │ ├── ctest.c │ ├── disk_35.d64 │ ├── disk_35_err.d64 │ ├── disk_40.d64 │ ├── disk_40_err.d64 │ ├── includes │ │ ├── helper.asm │ │ └── helper.bas │ ├── kickdebug.dbg │ ├── kickdebug.info │ ├── llvmdebug.elf │ ├── oscar64debug.dbj │ ├── sample.wav │ ├── small.txt │ ├── test.asm │ ├── test.prg │ ├── test.prg.elf │ ├── test.txt │ └── test2.s ├── debug_info.test.js ├── disassembler.test.js ├── index.js ├── jest.config.js ├── language.test.js ├── logger.test.js ├── mockup │ └── vscode.js ├── ninja.test.js ├── project-config.json ├── project.test.js ├── res │ ├── charset.ctm │ ├── charset2.ctm │ ├── gradients.png │ ├── koala.kla │ ├── picture.png │ ├── picture2.png │ ├── picture_blue.png │ ├── spritemate.spm │ ├── spritepad1.spd │ ├── spritepad2.spd │ ├── spritepad3.spd │ ├── test.res │ ├── test_160x200x16p_multi.png │ ├── test_160x200x24_multi.png │ ├── testmusic.sid │ ├── tileset.ctm │ ├── tmp.png │ ├── wave_8bit_11025.wav │ ├── wave_hello.wav │ ├── wave_mono.wav │ └── wave_stereo.wav ├── runners │ ├── builder.run.js │ ├── d64.run.js │ ├── debug_info.run.js │ ├── elf.run.js │ ├── emu_debug.run.js │ ├── expr.run.js │ ├── language.run.js │ ├── python.run.js │ ├── vice_debug.run.js │ └── work.run.js ├── setup.js └── utils.test.js └── tools ├── bc.py ├── bclib ├── __init__.py ├── common.py ├── compiler.py ├── constants.py └── decompiler.py ├── pypng ├── __init__.py └── png.py ├── rc.py └── rclib ├── __init__.py ├── bitmap.py ├── charset.py ├── constants.py ├── factory.py ├── formatter.py ├── plot.py ├── resource.py ├── sid.py ├── sprite.py └── wave.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/.jshintrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/esbuild.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/eslint.config.js -------------------------------------------------------------------------------- /examples/acme/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/acme/.vscode/launch.json -------------------------------------------------------------------------------- /examples/acme/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/acme/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/acme/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/acme/project-config.json -------------------------------------------------------------------------------- /examples/acme/src/data.raw: -------------------------------------------------------------------------------- 1 | HELLO, WORLD!@ -------------------------------------------------------------------------------- /examples/acme/src/include.asm: -------------------------------------------------------------------------------- 1 | ; Hello 2 | -------------------------------------------------------------------------------- /examples/acme/src/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/acme/src/main.asm -------------------------------------------------------------------------------- /examples/basic/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic/.vscode/launch.json -------------------------------------------------------------------------------- /examples/basic/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/basic/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic/project-config.json -------------------------------------------------------------------------------- /examples/basic/src/include.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic/src/include.bas -------------------------------------------------------------------------------- /examples/basic/src/main.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic/src/main.bas -------------------------------------------------------------------------------- /examples/basic/src/modern.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic/src/modern.bas -------------------------------------------------------------------------------- /examples/basic_tsb/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic_tsb/.vscode/launch.json -------------------------------------------------------------------------------- /examples/basic_tsb/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic_tsb/.vscode/settings.json -------------------------------------------------------------------------------- /examples/basic_tsb/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic_tsb/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/basic_tsb/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic_tsb/project-config.json -------------------------------------------------------------------------------- /examples/basic_tsb/src/main.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/basic_tsb/src/main.bas -------------------------------------------------------------------------------- /examples/cc65/.clang-format: -------------------------------------------------------------------------------- 1 | # clang format config 2 | 3 | BasedOnStyle: Google 4 | IndentWidth: 4 5 | -------------------------------------------------------------------------------- /examples/cc65/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/cc65/.clang-tidy -------------------------------------------------------------------------------- /examples/cc65/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/cc65/.vscode/launch.json -------------------------------------------------------------------------------- /examples/cc65/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/cc65/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/cc65/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/cc65/project-config.json -------------------------------------------------------------------------------- /examples/cc65/src/data.raw: -------------------------------------------------------------------------------- 1 | HELLO, WORLD!@ -------------------------------------------------------------------------------- /examples/cc65/src/include.h: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /examples/cc65/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/cc65/src/main.c -------------------------------------------------------------------------------- /examples/kick/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/kick/.vscode/launch.json -------------------------------------------------------------------------------- /examples/kick/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/kick/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/kick/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/kick/project-config.json -------------------------------------------------------------------------------- /examples/kick/src/data.raw: -------------------------------------------------------------------------------- 1 | HELLO, WORLD!@ -------------------------------------------------------------------------------- /examples/kick/src/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/kick/src/main.asm -------------------------------------------------------------------------------- /examples/llvm/.clang-format: -------------------------------------------------------------------------------- 1 | # clang format config 2 | BasedOnStyle: Google 3 | IndentWidth: 4 4 | -------------------------------------------------------------------------------- /examples/llvm/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/llvm/.clang-tidy -------------------------------------------------------------------------------- /examples/llvm/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/llvm/.vscode/launch.json -------------------------------------------------------------------------------- /examples/llvm/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/llvm/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/llvm/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/llvm/project-config.json -------------------------------------------------------------------------------- /examples/llvm/src/assembler.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/llvm/src/assembler.asm -------------------------------------------------------------------------------- /examples/llvm/src/data.raw: -------------------------------------------------------------------------------- 1 | HELLO, WORLD! 2 | -------------------------------------------------------------------------------- /examples/llvm/src/include.h: -------------------------------------------------------------------------------- 1 | // 2 | // Include file 3 | // 4 | -------------------------------------------------------------------------------- /examples/llvm/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/llvm/src/main.cpp -------------------------------------------------------------------------------- /examples/oscar64/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/.clang-tidy -------------------------------------------------------------------------------- /examples/oscar64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/.gitignore -------------------------------------------------------------------------------- /examples/oscar64/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /examples/oscar64/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/.vscode/launch.json -------------------------------------------------------------------------------- /examples/oscar64/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/.vscode/settings.json -------------------------------------------------------------------------------- /examples/oscar64/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/oscar64/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/project-config.json -------------------------------------------------------------------------------- /examples/oscar64/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/examples/oscar64/src/main.c -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/jsconfig.json -------------------------------------------------------------------------------- /language/acme.grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/acme.grammar.json -------------------------------------------------------------------------------- /language/acme.language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/acme.language.json -------------------------------------------------------------------------------- /language/asm.grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/asm.grammar.json -------------------------------------------------------------------------------- /language/asm.language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/asm.language.json -------------------------------------------------------------------------------- /language/asm.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/asm.snippets.json -------------------------------------------------------------------------------- /language/bas.grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/bas.grammar.json -------------------------------------------------------------------------------- /language/bas.grammar_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/bas.grammar_old.json -------------------------------------------------------------------------------- /language/bas.language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/bas.language.json -------------------------------------------------------------------------------- /language/json.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/json.snippets.json -------------------------------------------------------------------------------- /language/kickass.grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/kickass.grammar.json -------------------------------------------------------------------------------- /language/kickass.language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/language/kickass.language.json -------------------------------------------------------------------------------- /media/disassembly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/media/disassembly.css -------------------------------------------------------------------------------- /media/disassembly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/media/disassembly.js -------------------------------------------------------------------------------- /media/vscode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/media/vscode.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/package.json -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/pylintrc -------------------------------------------------------------------------------- /resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/icons/icon.png -------------------------------------------------------------------------------- /resources/icons/icon_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/icons/icon_large.png -------------------------------------------------------------------------------- /resources/icons/icon_large_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/icons/icon_large_2.png -------------------------------------------------------------------------------- /resources/icons/logo.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/icons/logo.pdn -------------------------------------------------------------------------------- /resources/ninja/linux/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/ninja/linux/ninja -------------------------------------------------------------------------------- /resources/ninja/mac/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/ninja/mac/ninja -------------------------------------------------------------------------------- /resources/ninja/win/ninja.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/ninja/win/ninja.exe -------------------------------------------------------------------------------- /resources/python/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/LICENSE.txt -------------------------------------------------------------------------------- /resources/python/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_asyncio.pyd -------------------------------------------------------------------------------- /resources/python/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_bz2.pyd -------------------------------------------------------------------------------- /resources/python/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_ctypes.pyd -------------------------------------------------------------------------------- /resources/python/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_decimal.pyd -------------------------------------------------------------------------------- /resources/python/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_elementtree.pyd -------------------------------------------------------------------------------- /resources/python/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_hashlib.pyd -------------------------------------------------------------------------------- /resources/python/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_lzma.pyd -------------------------------------------------------------------------------- /resources/python/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_msi.pyd -------------------------------------------------------------------------------- /resources/python/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_multiprocessing.pyd -------------------------------------------------------------------------------- /resources/python/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_overlapped.pyd -------------------------------------------------------------------------------- /resources/python/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_queue.pyd -------------------------------------------------------------------------------- /resources/python/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_socket.pyd -------------------------------------------------------------------------------- /resources/python/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_sqlite3.pyd -------------------------------------------------------------------------------- /resources/python/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_ssl.pyd -------------------------------------------------------------------------------- /resources/python/_uuid.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_uuid.pyd -------------------------------------------------------------------------------- /resources/python/_zoneinfo.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/_zoneinfo.pyd -------------------------------------------------------------------------------- /resources/python/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/libcrypto-1_1.dll -------------------------------------------------------------------------------- /resources/python/libffi-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/libffi-7.dll -------------------------------------------------------------------------------- /resources/python/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/libssl-1_1.dll -------------------------------------------------------------------------------- /resources/python/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/pyexpat.pyd -------------------------------------------------------------------------------- /resources/python/python.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/python.cat -------------------------------------------------------------------------------- /resources/python/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/python.exe -------------------------------------------------------------------------------- /resources/python/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/python3.dll -------------------------------------------------------------------------------- /resources/python/python310._pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/python310._pth -------------------------------------------------------------------------------- /resources/python/python310.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/python310.dll -------------------------------------------------------------------------------- /resources/python/python310.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/python310.zip -------------------------------------------------------------------------------- /resources/python/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/pythonw.exe -------------------------------------------------------------------------------- /resources/python/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/select.pyd -------------------------------------------------------------------------------- /resources/python/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/sqlite3.dll -------------------------------------------------------------------------------- /resources/python/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/unicodedata.pyd -------------------------------------------------------------------------------- /resources/python/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/vcruntime140.dll -------------------------------------------------------------------------------- /resources/python/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/vcruntime140_1.dll -------------------------------------------------------------------------------- /resources/python/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/python/winsound.pyd -------------------------------------------------------------------------------- /resources/templates/acme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/acme/.gitignore -------------------------------------------------------------------------------- /resources/templates/acme/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/acme/.vscode/launch.json -------------------------------------------------------------------------------- /resources/templates/acme/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/acme/.vscode/tasks.json -------------------------------------------------------------------------------- /resources/templates/acme/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/acme/project-config.json -------------------------------------------------------------------------------- /resources/templates/acme/src/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/acme/src/main.asm -------------------------------------------------------------------------------- /resources/templates/basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/basic/.gitignore -------------------------------------------------------------------------------- /resources/templates/basic/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/basic/.vscode/launch.json -------------------------------------------------------------------------------- /resources/templates/basic/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/basic/.vscode/tasks.json -------------------------------------------------------------------------------- /resources/templates/basic/src/main.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/basic/src/main.bas -------------------------------------------------------------------------------- /resources/templates/cc65/.clang-format: -------------------------------------------------------------------------------- 1 | # clang format config 2 | BasedOnStyle: Google 3 | IndentWidth: 4 4 | -------------------------------------------------------------------------------- /resources/templates/cc65/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/cc65/.clang-tidy -------------------------------------------------------------------------------- /resources/templates/cc65/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/cc65/.gitignore -------------------------------------------------------------------------------- /resources/templates/cc65/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/cc65/.vscode/launch.json -------------------------------------------------------------------------------- /resources/templates/cc65/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/cc65/.vscode/tasks.json -------------------------------------------------------------------------------- /resources/templates/cc65/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/cc65/src/main.c -------------------------------------------------------------------------------- /resources/templates/kick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/kick/.gitignore -------------------------------------------------------------------------------- /resources/templates/kick/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/kick/.vscode/launch.json -------------------------------------------------------------------------------- /resources/templates/kick/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/kick/.vscode/tasks.json -------------------------------------------------------------------------------- /resources/templates/kick/src/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/kick/src/main.asm -------------------------------------------------------------------------------- /resources/templates/llvm/.clang-format: -------------------------------------------------------------------------------- 1 | # clang format config 2 | BasedOnStyle: Google 3 | IndentWidth: 4 4 | -------------------------------------------------------------------------------- /resources/templates/llvm/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/llvm/.clang-tidy -------------------------------------------------------------------------------- /resources/templates/llvm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/llvm/.gitignore -------------------------------------------------------------------------------- /resources/templates/llvm/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/llvm/.vscode/launch.json -------------------------------------------------------------------------------- /resources/templates/llvm/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/llvm/.vscode/tasks.json -------------------------------------------------------------------------------- /resources/templates/llvm/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/llvm/src/main.cpp -------------------------------------------------------------------------------- /resources/templates/oscar64/.clang-format: -------------------------------------------------------------------------------- 1 | # clang format config 2 | BasedOnStyle: Google 3 | IndentWidth: 4 4 | -------------------------------------------------------------------------------- /resources/templates/oscar64/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/oscar64/.clang-tidy -------------------------------------------------------------------------------- /resources/templates/oscar64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/oscar64/.gitignore -------------------------------------------------------------------------------- /resources/templates/oscar64/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/oscar64/.vscode/launch.json -------------------------------------------------------------------------------- /resources/templates/oscar64/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/oscar64/.vscode/tasks.json -------------------------------------------------------------------------------- /resources/templates/oscar64/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/templates/oscar64/src/main.c -------------------------------------------------------------------------------- /resources/walkthroughs/acme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/acme.md -------------------------------------------------------------------------------- /resources/walkthroughs/acme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/acme.png -------------------------------------------------------------------------------- /resources/walkthroughs/acme_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/acme_config.png -------------------------------------------------------------------------------- /resources/walkthroughs/c64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/c64.png -------------------------------------------------------------------------------- /resources/walkthroughs/cc65.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/cc65.md -------------------------------------------------------------------------------- /resources/walkthroughs/cc65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/cc65.png -------------------------------------------------------------------------------- /resources/walkthroughs/cc65_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/cc65_config.png -------------------------------------------------------------------------------- /resources/walkthroughs/charpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/charpad.png -------------------------------------------------------------------------------- /resources/walkthroughs/features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/features.svg -------------------------------------------------------------------------------- /resources/walkthroughs/kick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/kick.md -------------------------------------------------------------------------------- /resources/walkthroughs/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/kick.png -------------------------------------------------------------------------------- /resources/walkthroughs/kick_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/kick_config.png -------------------------------------------------------------------------------- /resources/walkthroughs/llvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/llvm.md -------------------------------------------------------------------------------- /resources/walkthroughs/llvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/llvm.png -------------------------------------------------------------------------------- /resources/walkthroughs/llvm_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/llvm_config.png -------------------------------------------------------------------------------- /resources/walkthroughs/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/project.md -------------------------------------------------------------------------------- /resources/walkthroughs/project_create1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/project_create1.png -------------------------------------------------------------------------------- /resources/walkthroughs/project_create2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/project_create2.png -------------------------------------------------------------------------------- /resources/walkthroughs/python_powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/python_powered.png -------------------------------------------------------------------------------- /resources/walkthroughs/resource_compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/resource_compiler.md -------------------------------------------------------------------------------- /resources/walkthroughs/spritemate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/spritemate.png -------------------------------------------------------------------------------- /resources/walkthroughs/spritepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/spritepad.png -------------------------------------------------------------------------------- /resources/walkthroughs/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/step1.md -------------------------------------------------------------------------------- /resources/walkthroughs/vice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/vice.md -------------------------------------------------------------------------------- /resources/walkthroughs/vice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/vice.png -------------------------------------------------------------------------------- /resources/walkthroughs/vice_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/vice_launch.png -------------------------------------------------------------------------------- /resources/walkthroughs/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/welcome.md -------------------------------------------------------------------------------- /resources/walkthroughs/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/resources/walkthroughs/welcome.png -------------------------------------------------------------------------------- /src/builder/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/builder/builder.js -------------------------------------------------------------------------------- /src/debugger/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug.js -------------------------------------------------------------------------------- /src/debugger/debug_context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_context.js -------------------------------------------------------------------------------- /src/debugger/debug_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_helper.js -------------------------------------------------------------------------------- /src/debugger/debug_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info.js -------------------------------------------------------------------------------- /src/debugger/debug_info_acme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_acme.js -------------------------------------------------------------------------------- /src/debugger/debug_info_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_basic.js -------------------------------------------------------------------------------- /src/debugger/debug_info_cc65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_cc65.js -------------------------------------------------------------------------------- /src/debugger/debug_info_elf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_elf.js -------------------------------------------------------------------------------- /src/debugger/debug_info_kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_kick.js -------------------------------------------------------------------------------- /src/debugger/debug_info_oscar64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_oscar64.js -------------------------------------------------------------------------------- /src/debugger/debug_info_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_info_types.js -------------------------------------------------------------------------------- /src/debugger/debug_memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_memory.js -------------------------------------------------------------------------------- /src/debugger/debug_session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_session.js -------------------------------------------------------------------------------- /src/debugger/debug_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_state.js -------------------------------------------------------------------------------- /src/debugger/debug_variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_variables.js -------------------------------------------------------------------------------- /src/debugger/debug_vice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_vice.js -------------------------------------------------------------------------------- /src/debugger/debug_x16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/debug_x16.js -------------------------------------------------------------------------------- /src/debugger/profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/debugger/profiler.js -------------------------------------------------------------------------------- /src/disassembler/disassembler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/disassembler/disassembler.js -------------------------------------------------------------------------------- /src/disassembler/opcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/disassembler/opcodes.js -------------------------------------------------------------------------------- /src/disk/d64_filesystem_provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/disk/d64_filesystem_provider.js -------------------------------------------------------------------------------- /src/disk/disk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/disk/disk.js -------------------------------------------------------------------------------- /src/elf/abbreviation_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/abbreviation_table.js -------------------------------------------------------------------------------- /src/elf/address_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/address_table.js -------------------------------------------------------------------------------- /src/elf/debug_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/debug_info.js -------------------------------------------------------------------------------- /src/elf/debug_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/debug_line.js -------------------------------------------------------------------------------- /src/elf/deserializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/deserializer.js -------------------------------------------------------------------------------- /src/elf/elf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/elf.js -------------------------------------------------------------------------------- /src/elf/section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/section.js -------------------------------------------------------------------------------- /src/elf/string_offset_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/string_offset_table.js -------------------------------------------------------------------------------- /src/elf/string_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/string_table.js -------------------------------------------------------------------------------- /src/elf/symbol_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/symbol_table.js -------------------------------------------------------------------------------- /src/elf/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/elf/types.js -------------------------------------------------------------------------------- /src/emulator/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/cpu.js -------------------------------------------------------------------------------- /src/emulator/emu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/emu.js -------------------------------------------------------------------------------- /src/emulator/opcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/opcodes.js -------------------------------------------------------------------------------- /src/emulator/roms/1541.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/1541.js -------------------------------------------------------------------------------- /src/emulator/roms/1541.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/1541.rom -------------------------------------------------------------------------------- /src/emulator/roms/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/basic.js -------------------------------------------------------------------------------- /src/emulator/roms/basic.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/basic.rom -------------------------------------------------------------------------------- /src/emulator/roms/char.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/char.js -------------------------------------------------------------------------------- /src/emulator/roms/char.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/char.rom -------------------------------------------------------------------------------- /src/emulator/roms/fastkernal.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/fastkernal.rom -------------------------------------------------------------------------------- /src/emulator/roms/kernal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/kernal.js -------------------------------------------------------------------------------- /src/emulator/roms/kernal.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/emulator/roms/kernal.rom -------------------------------------------------------------------------------- /src/extension/diagnostic_provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/diagnostic_provider.js -------------------------------------------------------------------------------- /src/extension/disassembler_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/disassembler_view.js -------------------------------------------------------------------------------- /src/extension/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/extension.js -------------------------------------------------------------------------------- /src/extension/intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/intellisense.js -------------------------------------------------------------------------------- /src/extension/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/main.js -------------------------------------------------------------------------------- /src/extension/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/statusbar.js -------------------------------------------------------------------------------- /src/extension/task_provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/extension/task_provider.js -------------------------------------------------------------------------------- /src/language/language_asm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/language/language_asm.js -------------------------------------------------------------------------------- /src/language/language_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/language/language_base.js -------------------------------------------------------------------------------- /src/language/language_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/language/language_basic.js -------------------------------------------------------------------------------- /src/language/language_provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/language/language_provider.js -------------------------------------------------------------------------------- /src/language/language_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/language/language_server.js -------------------------------------------------------------------------------- /src/project/ninja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/project/ninja.js -------------------------------------------------------------------------------- /src/project/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/project/project.js -------------------------------------------------------------------------------- /src/project/project_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/project/project_types.js -------------------------------------------------------------------------------- /src/project/scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/project/scanner.js -------------------------------------------------------------------------------- /src/project/toolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/project/toolkit.js -------------------------------------------------------------------------------- /src/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/settings/settings.js -------------------------------------------------------------------------------- /src/utilities/args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/args.js -------------------------------------------------------------------------------- /src/utilities/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/cache.js -------------------------------------------------------------------------------- /src/utilities/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/expression.js -------------------------------------------------------------------------------- /src/utilities/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/formatter.js -------------------------------------------------------------------------------- /src/utilities/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/logger.js -------------------------------------------------------------------------------- /src/utilities/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/net.js -------------------------------------------------------------------------------- /src/utilities/sorted_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/sorted_array.js -------------------------------------------------------------------------------- /src/utilities/stop_watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/stop_watch.js -------------------------------------------------------------------------------- /src/utilities/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/src/utilities/utils.js -------------------------------------------------------------------------------- /test/args.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/args.test.js -------------------------------------------------------------------------------- /test/basic/include.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/include.bas -------------------------------------------------------------------------------- /test/basic/main.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/main.bas -------------------------------------------------------------------------------- /test/basic/main2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/main2.bas -------------------------------------------------------------------------------- /test/basic/main3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/main3.bas -------------------------------------------------------------------------------- /test/basic/main4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/main4.bas -------------------------------------------------------------------------------- /test/basic/main5.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/main5.bas -------------------------------------------------------------------------------- /test/basic/main6.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/main6.bas -------------------------------------------------------------------------------- /test/basic/out.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/out.prg -------------------------------------------------------------------------------- /test/basic/then.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/basic/then.bas -------------------------------------------------------------------------------- /test/builder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/builder.test.js -------------------------------------------------------------------------------- /test/data/acmedebug.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/acmedebug.report -------------------------------------------------------------------------------- /test/data/cc65debug.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/cc65debug.dbg -------------------------------------------------------------------------------- /test/data/cmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/cmodule.c -------------------------------------------------------------------------------- /test/data/ctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/ctest.c -------------------------------------------------------------------------------- /test/data/disk_35.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/disk_35.d64 -------------------------------------------------------------------------------- /test/data/disk_35_err.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/disk_35_err.d64 -------------------------------------------------------------------------------- /test/data/disk_40.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/disk_40.d64 -------------------------------------------------------------------------------- /test/data/disk_40_err.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/disk_40_err.d64 -------------------------------------------------------------------------------- /test/data/includes/helper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/includes/helper.asm -------------------------------------------------------------------------------- /test/data/includes/helper.bas: -------------------------------------------------------------------------------- 1 | 2 | PRINT "INCLUDED" 3 | -------------------------------------------------------------------------------- /test/data/kickdebug.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/kickdebug.dbg -------------------------------------------------------------------------------- /test/data/kickdebug.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/kickdebug.info -------------------------------------------------------------------------------- /test/data/llvmdebug.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/llvmdebug.elf -------------------------------------------------------------------------------- /test/data/oscar64debug.dbj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/oscar64debug.dbj -------------------------------------------------------------------------------- /test/data/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/sample.wav -------------------------------------------------------------------------------- /test/data/small.txt: -------------------------------------------------------------------------------- 1 | ABC -------------------------------------------------------------------------------- /test/data/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/test.asm -------------------------------------------------------------------------------- /test/data/test.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/test.prg -------------------------------------------------------------------------------- /test/data/test.prg.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/test.prg.elf -------------------------------------------------------------------------------- /test/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/test.txt -------------------------------------------------------------------------------- /test/data/test2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/data/test2.s -------------------------------------------------------------------------------- /test/debug_info.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/debug_info.test.js -------------------------------------------------------------------------------- /test/disassembler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/disassembler.test.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/index.js -------------------------------------------------------------------------------- /test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/jest.config.js -------------------------------------------------------------------------------- /test/language.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/language.test.js -------------------------------------------------------------------------------- /test/logger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/logger.test.js -------------------------------------------------------------------------------- /test/mockup/vscode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/mockup/vscode.js -------------------------------------------------------------------------------- /test/ninja.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/ninja.test.js -------------------------------------------------------------------------------- /test/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/project-config.json -------------------------------------------------------------------------------- /test/project.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/project.test.js -------------------------------------------------------------------------------- /test/res/charset.ctm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/charset.ctm -------------------------------------------------------------------------------- /test/res/charset2.ctm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/charset2.ctm -------------------------------------------------------------------------------- /test/res/gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/gradients.png -------------------------------------------------------------------------------- /test/res/koala.kla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/koala.kla -------------------------------------------------------------------------------- /test/res/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/picture.png -------------------------------------------------------------------------------- /test/res/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/picture2.png -------------------------------------------------------------------------------- /test/res/picture_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/picture_blue.png -------------------------------------------------------------------------------- /test/res/spritemate.spm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/spritemate.spm -------------------------------------------------------------------------------- /test/res/spritepad1.spd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/spritepad1.spd -------------------------------------------------------------------------------- /test/res/spritepad2.spd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/spritepad2.spd -------------------------------------------------------------------------------- /test/res/spritepad3.spd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/spritepad3.spd -------------------------------------------------------------------------------- /test/res/test.res: -------------------------------------------------------------------------------- 1 | 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ 2 | -------------------------------------------------------------------------------- /test/res/test_160x200x16p_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/test_160x200x16p_multi.png -------------------------------------------------------------------------------- /test/res/test_160x200x24_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/test_160x200x24_multi.png -------------------------------------------------------------------------------- /test/res/testmusic.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/testmusic.sid -------------------------------------------------------------------------------- /test/res/tileset.ctm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/tileset.ctm -------------------------------------------------------------------------------- /test/res/tmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/tmp.png -------------------------------------------------------------------------------- /test/res/wave_8bit_11025.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/wave_8bit_11025.wav -------------------------------------------------------------------------------- /test/res/wave_hello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/wave_hello.wav -------------------------------------------------------------------------------- /test/res/wave_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/wave_mono.wav -------------------------------------------------------------------------------- /test/res/wave_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/res/wave_stereo.wav -------------------------------------------------------------------------------- /test/runners/builder.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/builder.run.js -------------------------------------------------------------------------------- /test/runners/d64.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/d64.run.js -------------------------------------------------------------------------------- /test/runners/debug_info.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/debug_info.run.js -------------------------------------------------------------------------------- /test/runners/elf.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/elf.run.js -------------------------------------------------------------------------------- /test/runners/emu_debug.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/emu_debug.run.js -------------------------------------------------------------------------------- /test/runners/expr.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/expr.run.js -------------------------------------------------------------------------------- /test/runners/language.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/language.run.js -------------------------------------------------------------------------------- /test/runners/python.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/python.run.js -------------------------------------------------------------------------------- /test/runners/vice_debug.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/vice_debug.run.js -------------------------------------------------------------------------------- /test/runners/work.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/runners/work.run.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/test/utils.test.js -------------------------------------------------------------------------------- /tools/bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/bc.py -------------------------------------------------------------------------------- /tools/bclib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/bclib/__init__.py -------------------------------------------------------------------------------- /tools/bclib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/bclib/common.py -------------------------------------------------------------------------------- /tools/bclib/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/bclib/compiler.py -------------------------------------------------------------------------------- /tools/bclib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/bclib/constants.py -------------------------------------------------------------------------------- /tools/bclib/decompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/bclib/decompiler.py -------------------------------------------------------------------------------- /tools/pypng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/pypng/__init__.py -------------------------------------------------------------------------------- /tools/pypng/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/pypng/png.py -------------------------------------------------------------------------------- /tools/rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rc.py -------------------------------------------------------------------------------- /tools/rclib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/__init__.py -------------------------------------------------------------------------------- /tools/rclib/bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/bitmap.py -------------------------------------------------------------------------------- /tools/rclib/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/charset.py -------------------------------------------------------------------------------- /tools/rclib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/constants.py -------------------------------------------------------------------------------- /tools/rclib/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/factory.py -------------------------------------------------------------------------------- /tools/rclib/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/formatter.py -------------------------------------------------------------------------------- /tools/rclib/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/plot.py -------------------------------------------------------------------------------- /tools/rclib/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/resource.py -------------------------------------------------------------------------------- /tools/rclib/sid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/sid.py -------------------------------------------------------------------------------- /tools/rclib/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/sprite.py -------------------------------------------------------------------------------- /tools/rclib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandshacks/vs64/HEAD/tools/rclib/wave.py --------------------------------------------------------------------------------