├── .gitignore ├── LICENSE ├── Oric ├── dflat │ ├── .vscode │ │ ├── dflat_programming_language │ │ │ ├── .vscode │ │ │ │ └── launch.json │ │ │ ├── .vscodeignore │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ └── syntaxes │ │ │ │ └── dflat.tmLanguage.json │ │ └── settings.json │ ├── as65 │ ├── as65.exe │ ├── as65.man │ ├── bank │ │ ├── bank0.lst │ │ └── bank0.s │ ├── cia │ │ └── cia.s │ ├── dflat │ │ ├── asm.i │ │ ├── asm.s │ │ ├── asmjmptab.s │ │ ├── asmsymtab.s │ │ ├── dflat.i │ │ ├── dflat.s │ │ ├── error.i │ │ ├── error.s │ │ ├── numop.s │ │ ├── proc.s │ │ ├── progedit.s │ │ ├── rtasm.s │ │ ├── rtjmptab.s │ │ ├── rtsubs.s │ │ ├── runtime.s │ │ ├── stack.s │ │ ├── tkasm.s │ │ ├── tkjmptab.s │ │ ├── tksymtab.s │ │ ├── tktyptab.s │ │ ├── tokenise.s │ │ ├── toksubs.s │ │ └── var.s │ ├── file │ │ ├── file.s │ │ ├── loci.i │ │ ├── locisd.s │ │ ├── sdcard.s │ │ └── tape.s │ ├── inc │ │ ├── graph.i │ │ └── includes.i │ ├── io │ │ ├── io.i │ │ └── io.s │ ├── kernel │ │ ├── build.s │ │ ├── irq.s │ │ ├── kernel.s │ │ ├── main.s │ │ ├── osromvec.i │ │ ├── snd-low.s │ │ └── zeropage.i │ ├── keyboard │ │ └── keyboard.s │ ├── make.ps1 │ ├── monitor │ │ └── cmd.s │ ├── rom │ │ ├── ORICD.ROM │ │ ├── dflat.rom │ │ └── dfloci.rom │ ├── sound │ │ └── sound.s │ ├── utils │ │ ├── intmath.s │ │ └── utils.s │ └── vdp │ │ ├── font.s │ │ └── graph.s ├── emulator │ ├── ChangeLog.txt │ ├── ReadMe-LiesMich_DE.txt │ ├── ReadMe.txt │ ├── SDL.dll │ ├── Version.txt │ ├── disks │ │ ├── bddos.dsk │ │ └── sedoric.dsk │ ├── images │ │ ├── avirec.bmp │ │ ├── disk_active.bmp │ │ ├── disk_ejected.bmp │ │ ├── disk_idle.bmp │ │ ├── disk_modactive.bmp │ │ ├── disk_modified.bmp │ │ ├── gfx_atmoskbd.bmp │ │ ├── gfx_atmoskbd.psd │ │ ├── gfx_oric1kbd.bmp │ │ ├── gfx_pravetzkbd.bmp │ │ ├── statusbar.bmp │ │ ├── tape_ejected.bmp │ │ ├── tape_pause.bmp │ │ ├── tape_play.bmp │ │ ├── tape_record.bmp │ │ ├── tape_stop.bmp │ │ └── winicon.bmp │ ├── oricutron-sdl2.exe │ ├── oricutron.cfg │ ├── oricutron.exe │ ├── pravdisks │ │ ├── 100.dsk │ │ ├── 130.dsk │ │ ├── 210.dsk │ │ └── 231.dsk │ ├── printer_out.txt │ ├── roms │ │ ├── 8dos.rom │ │ ├── 8dos.sym │ │ ├── 8dos2.rom │ │ ├── 8dos2.sym │ │ ├── Bas122de.pch │ │ ├── Bas122fr.pch │ │ ├── Bas122uk.pch │ │ ├── MICRODIS.ROM │ │ ├── basic10.pch │ │ ├── basic10.rom │ │ ├── basic10.sym │ │ ├── basic11b.pch │ │ ├── basic11b.rom │ │ ├── basic11b.sym │ │ ├── bd500.rom │ │ ├── bd500.sym │ │ ├── cumana.rom │ │ ├── cumana.sym │ │ ├── dflat.pch │ │ ├── dflat.rom │ │ ├── hyperbas.rom │ │ ├── jasmin.rom │ │ ├── jasmin.sym │ │ ├── microdis.sym │ │ ├── oric11b.rom │ │ ├── pch-template.pch │ │ ├── pravetzt-1.0.pch │ │ ├── pravetzt-1.0.rom │ │ ├── pravetzt-1.0.sym │ │ ├── pravetzt.pch │ │ ├── pravetzt.rom │ │ ├── pravetzt.sym │ │ ├── sedoric.sym │ │ ├── teleass.rom │ │ ├── teleass.sym │ │ ├── telmatic.rom │ │ ├── telmon24.pch │ │ ├── telmon24.rom │ │ └── telmon24.sym │ ├── tapes │ │ └── OricBASIC │ │ │ ├── GCAATTACK.TAP │ │ │ └── GCALIENS.TAP │ └── teledisks │ │ └── stratsed.dsk ├── readme.txt ├── software │ ├── dflat │ │ ├── demos │ │ │ ├── festival │ │ │ │ └── fest2023.tap │ │ │ ├── graphics │ │ │ │ ├── bigspr.tap │ │ │ │ ├── hicol.tap │ │ │ │ ├── line.tap │ │ │ │ ├── mcsprite.tap │ │ │ │ └── sprdemo.tap │ │ │ ├── social │ │ │ │ ├── thanks.tap │ │ │ │ └── xmastwit.tap │ │ │ ├── sound │ │ │ │ ├── pt3 │ │ │ │ │ ├── AhaTake.pt3 │ │ │ │ │ ├── BOOM.pt3 │ │ │ │ │ ├── CLTime.pt3 │ │ │ │ │ ├── Depeche.pt3 │ │ │ │ │ ├── FUN.pt3 │ │ │ │ │ ├── GhostnG.pt3 │ │ │ │ │ ├── Limahl.pt3 │ │ │ │ │ ├── MFrozen.pt3 │ │ │ │ │ ├── NINJA.pt3 │ │ │ │ │ ├── NirvTeen.pt3 │ │ │ │ │ ├── Oxygene4.pt3 │ │ │ │ │ ├── RHCreep.pt3 │ │ │ │ │ ├── RT.pt3 │ │ │ │ │ ├── RWFeel.pt3 │ │ │ │ │ ├── SMario.pt3 │ │ │ │ │ ├── SpaceNY.pt3 │ │ │ │ │ ├── StarWars.pt3 │ │ │ │ │ ├── TELEGA.pt3 │ │ │ │ │ ├── TEST.pt3 │ │ │ │ │ ├── WhiteXms.pt3 │ │ │ │ │ ├── attract.pt3 │ │ │ │ │ ├── popcorn.pt3 │ │ │ │ │ ├── ppt37700.bin │ │ │ │ │ ├── ppt37800.bin │ │ │ │ │ ├── ppt37900.bin │ │ │ │ │ ├── ptdemo.tap │ │ │ │ │ └── win1.pt3 │ │ │ │ └── rttl │ │ │ │ │ └── rttlplay.tap │ │ │ └── space │ │ │ │ ├── 1-small.bin │ │ │ │ ├── 10-small.bin │ │ │ │ ├── 11-small.bin │ │ │ │ ├── 12-small.bin │ │ │ │ ├── 13-small.bin │ │ │ │ ├── 14-small.bin │ │ │ │ ├── 2-small.bin │ │ │ │ ├── 3-small.bin │ │ │ │ ├── 4-small.bin │ │ │ │ ├── 5-small.bin │ │ │ │ ├── 6-small.bin │ │ │ │ ├── 7-small.bin │ │ │ │ ├── 8-small.bin │ │ │ │ ├── 9-small.bin │ │ │ │ └── spacegal.tap │ │ ├── games │ │ │ ├── TETRIS.tap │ │ │ ├── attract.pt3 │ │ │ ├── defender.tap │ │ │ ├── explore7.tap │ │ │ ├── inv256.tap │ │ │ ├── inv3d.tap │ │ │ ├── kong.tap │ │ │ ├── lander.tap │ │ │ ├── pix.tap │ │ │ ├── popcorn.pt3 │ │ │ ├── ppt37900.bin │ │ │ ├── tetris2.tap │ │ │ ├── triangle.tap │ │ │ └── win1.pt3 │ │ └── test │ │ │ ├── line2.tap │ │ │ ├── numspeed.tap │ │ │ └── pcwbench.tap │ ├── make.ps1 │ ├── project │ │ ├── images │ │ │ ├── 1.raw │ │ │ ├── 10.raw │ │ │ ├── 11.raw │ │ │ ├── 12.raw │ │ │ ├── 13.raw │ │ │ ├── 14.raw │ │ │ ├── 2.raw │ │ │ ├── 3.raw │ │ │ ├── 4.raw │ │ │ ├── 5.raw │ │ │ ├── 6.raw │ │ │ ├── 7.raw │ │ │ ├── 8.raw │ │ │ └── 9.raw │ │ └── pt3 │ │ │ ├── as65 │ │ │ ├── as65.exe │ │ │ ├── as65.man │ │ │ ├── make.ps1 │ │ │ ├── ppt3.lst │ │ │ ├── ppt3.s │ │ │ ├── ppt37900.bin │ │ │ └── tunes │ │ │ ├── AhaTake.pt3 │ │ │ ├── BOOM.pt3 │ │ │ ├── CLTime.pt3 │ │ │ ├── Depeche.pt3 │ │ │ ├── FUN.pt3 │ │ │ ├── GhostnG.pt3 │ │ │ ├── Limahl.pt3 │ │ │ ├── MFrozen.pt3 │ │ │ ├── NINJA.pt3 │ │ │ ├── NirvTeen.pt3 │ │ │ ├── Oxygene4.pt3 │ │ │ ├── RHCreep.pt3 │ │ │ ├── RT.pt3 │ │ │ ├── RWFeel.pt3 │ │ │ ├── SMario.pt3 │ │ │ ├── SpaceNY.pt3 │ │ │ ├── StarWars.pt3 │ │ │ ├── TELEGA.pt3 │ │ │ ├── TEST.pt3 │ │ │ ├── WhiteXms.pt3 │ │ │ └── popcorn.pt3 │ └── sd-src │ │ ├── demos │ │ ├── festival │ │ │ └── fest2023.prg │ │ ├── graphics │ │ │ ├── bigspr.prg │ │ │ ├── hicol.prg │ │ │ ├── line.prg │ │ │ ├── mcsprite.prg │ │ │ └── sprdemo.prg │ │ ├── social │ │ │ ├── thanks.prg │ │ │ └── xmastwit.prg │ │ ├── sound │ │ │ ├── pt3 │ │ │ │ ├── AhaTake.pt3 │ │ │ │ ├── BOOM.pt3 │ │ │ │ ├── CLTime.pt3 │ │ │ │ ├── Depeche.pt3 │ │ │ │ ├── FUN.pt3 │ │ │ │ ├── GhostnG.pt3 │ │ │ │ ├── Limahl.pt3 │ │ │ │ ├── MFrozen.pt3 │ │ │ │ ├── NINJA.pt3 │ │ │ │ ├── NirvTeen.pt3 │ │ │ │ ├── Oxygene4.pt3 │ │ │ │ ├── RHCreep.pt3 │ │ │ │ ├── RT.pt3 │ │ │ │ ├── RWFeel.pt3 │ │ │ │ ├── SMario.pt3 │ │ │ │ ├── SpaceNY.pt3 │ │ │ │ ├── StarWars.pt3 │ │ │ │ ├── TELEGA.pt3 │ │ │ │ ├── TEST.pt3 │ │ │ │ ├── WhiteXms.pt3 │ │ │ │ ├── attract.pt3 │ │ │ │ ├── popcorn.pt3 │ │ │ │ ├── ppt37700.bin │ │ │ │ ├── ppt37800.bin │ │ │ │ ├── ppt37900.bin │ │ │ │ ├── ptdemo.prg │ │ │ │ └── win1.pt3 │ │ │ └── rttl │ │ │ │ └── rttlplay.prg │ │ └── space │ │ │ ├── 1-small.bin │ │ │ ├── 10-small.bin │ │ │ ├── 11-small.bin │ │ │ ├── 12-small.bin │ │ │ ├── 13-small.bin │ │ │ ├── 14-small.bin │ │ │ ├── 2-small.bin │ │ │ ├── 3-small.bin │ │ │ ├── 4-small.bin │ │ │ ├── 5-small.bin │ │ │ ├── 6-small.bin │ │ │ ├── 7-small.bin │ │ │ ├── 8-small.bin │ │ │ ├── 9-small.bin │ │ │ └── spacegal.prg │ │ ├── games │ │ ├── TETRIS.PRG │ │ ├── attract.pt3 │ │ ├── defender.prg │ │ ├── explore7.prg │ │ ├── inv256.prg │ │ ├── inv3d.prg │ │ ├── kong.prg │ │ ├── lander.prg │ │ ├── pix.prg │ │ ├── popcorn.pt3 │ │ ├── ppt37900.bin │ │ ├── tetris2.PRG │ │ ├── triangle.prg │ │ └── win1.pt3 │ │ └── test │ │ ├── line2.prg │ │ ├── numspeed.prg │ │ └── pcwbench.prg ├── util │ ├── .gitignore │ ├── bin │ │ ├── dfbin2tap.exe │ │ ├── dftap2txt.exe │ │ ├── dftap2wav.exe │ │ └── dftxt2tap.exe │ ├── dfbin2tap │ │ ├── dfbin2tap.cpp │ │ └── dfbin2tap.h │ ├── dftap2txt │ │ ├── dftap2txt.cpp │ │ └── dftap2txt.h │ ├── dftap2wav │ │ ├── dftap2wav.cpp │ │ └── dftap2wav.h │ ├── dftxt2tap │ │ ├── dftxt2tap.cpp │ │ └── dftxt2tap.h │ └── make.ps1 └── vsc-lang │ ├── dflat_programming_language │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── language-configuration.json │ ├── package.json │ └── syntaxes │ │ └── dflat.tmLanguage.json │ └── e-_programming_language │ ├── .vscode │ └── launch.json │ ├── .vscodeignore │ ├── language-configuration.json │ ├── package.json │ └── syntaxes │ └── e-.tmLanguage.json ├── README.md └── wiki-files ├── hires-line-circle.png ├── plot-scrn.png ├── readme.txt └── sprite-example-1.mp4 /.gitignore: -------------------------------------------------------------------------------- 1 | Oric/emulator/printer_out.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/LICENSE -------------------------------------------------------------------------------- /Oric/dflat/.vscode/dflat_programming_language/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/.vscode/dflat_programming_language/.vscode/launch.json -------------------------------------------------------------------------------- /Oric/dflat/.vscode/dflat_programming_language/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/.vscode/dflat_programming_language/.vscodeignore -------------------------------------------------------------------------------- /Oric/dflat/.vscode/dflat_programming_language/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/.vscode/dflat_programming_language/language-configuration.json -------------------------------------------------------------------------------- /Oric/dflat/.vscode/dflat_programming_language/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/.vscode/dflat_programming_language/package.json -------------------------------------------------------------------------------- /Oric/dflat/.vscode/dflat_programming_language/syntaxes/dflat.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/.vscode/dflat_programming_language/syntaxes/dflat.tmLanguage.json -------------------------------------------------------------------------------- /Oric/dflat/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureOnOpen": false 3 | } -------------------------------------------------------------------------------- /Oric/dflat/as65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/as65 -------------------------------------------------------------------------------- /Oric/dflat/as65.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/as65.exe -------------------------------------------------------------------------------- /Oric/dflat/as65.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/as65.man -------------------------------------------------------------------------------- /Oric/dflat/bank/bank0.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/bank/bank0.lst -------------------------------------------------------------------------------- /Oric/dflat/bank/bank0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/bank/bank0.s -------------------------------------------------------------------------------- /Oric/dflat/cia/cia.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/cia/cia.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/asm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/asm.i -------------------------------------------------------------------------------- /Oric/dflat/dflat/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/asm.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/asmjmptab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/asmjmptab.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/asmsymtab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/asmsymtab.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/dflat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/dflat.i -------------------------------------------------------------------------------- /Oric/dflat/dflat/dflat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/dflat.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/error.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/error.i -------------------------------------------------------------------------------- /Oric/dflat/dflat/error.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/error.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/numop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/numop.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/proc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/proc.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/progedit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/progedit.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/rtasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/rtasm.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/rtjmptab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/rtjmptab.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/rtsubs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/rtsubs.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/runtime.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/runtime.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/stack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/stack.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/tkasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/tkasm.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/tkjmptab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/tkjmptab.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/tksymtab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/tksymtab.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/tktyptab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/tktyptab.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/tokenise.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/tokenise.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/toksubs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/toksubs.s -------------------------------------------------------------------------------- /Oric/dflat/dflat/var.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/dflat/var.s -------------------------------------------------------------------------------- /Oric/dflat/file/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/file/file.s -------------------------------------------------------------------------------- /Oric/dflat/file/loci.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/file/loci.i -------------------------------------------------------------------------------- /Oric/dflat/file/locisd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/file/locisd.s -------------------------------------------------------------------------------- /Oric/dflat/file/sdcard.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/file/sdcard.s -------------------------------------------------------------------------------- /Oric/dflat/file/tape.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/file/tape.s -------------------------------------------------------------------------------- /Oric/dflat/inc/graph.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/inc/graph.i -------------------------------------------------------------------------------- /Oric/dflat/inc/includes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/inc/includes.i -------------------------------------------------------------------------------- /Oric/dflat/io/io.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/io/io.i -------------------------------------------------------------------------------- /Oric/dflat/io/io.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/io/io.s -------------------------------------------------------------------------------- /Oric/dflat/kernel/build.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/build.s -------------------------------------------------------------------------------- /Oric/dflat/kernel/irq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/irq.s -------------------------------------------------------------------------------- /Oric/dflat/kernel/kernel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/kernel.s -------------------------------------------------------------------------------- /Oric/dflat/kernel/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/main.s -------------------------------------------------------------------------------- /Oric/dflat/kernel/osromvec.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/osromvec.i -------------------------------------------------------------------------------- /Oric/dflat/kernel/snd-low.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/snd-low.s -------------------------------------------------------------------------------- /Oric/dflat/kernel/zeropage.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/kernel/zeropage.i -------------------------------------------------------------------------------- /Oric/dflat/keyboard/keyboard.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/keyboard/keyboard.s -------------------------------------------------------------------------------- /Oric/dflat/make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/make.ps1 -------------------------------------------------------------------------------- /Oric/dflat/monitor/cmd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/monitor/cmd.s -------------------------------------------------------------------------------- /Oric/dflat/rom/ORICD.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/rom/ORICD.ROM -------------------------------------------------------------------------------- /Oric/dflat/rom/dflat.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/rom/dflat.rom -------------------------------------------------------------------------------- /Oric/dflat/rom/dfloci.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/rom/dfloci.rom -------------------------------------------------------------------------------- /Oric/dflat/sound/sound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/sound/sound.s -------------------------------------------------------------------------------- /Oric/dflat/utils/intmath.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/utils/intmath.s -------------------------------------------------------------------------------- /Oric/dflat/utils/utils.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/utils/utils.s -------------------------------------------------------------------------------- /Oric/dflat/vdp/font.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/vdp/font.s -------------------------------------------------------------------------------- /Oric/dflat/vdp/graph.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/dflat/vdp/graph.s -------------------------------------------------------------------------------- /Oric/emulator/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/ChangeLog.txt -------------------------------------------------------------------------------- /Oric/emulator/ReadMe-LiesMich_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/ReadMe-LiesMich_DE.txt -------------------------------------------------------------------------------- /Oric/emulator/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/ReadMe.txt -------------------------------------------------------------------------------- /Oric/emulator/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/SDL.dll -------------------------------------------------------------------------------- /Oric/emulator/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/Version.txt -------------------------------------------------------------------------------- /Oric/emulator/disks/bddos.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/disks/bddos.dsk -------------------------------------------------------------------------------- /Oric/emulator/disks/sedoric.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/disks/sedoric.dsk -------------------------------------------------------------------------------- /Oric/emulator/images/avirec.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/avirec.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/disk_active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/disk_active.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/disk_ejected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/disk_ejected.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/disk_idle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/disk_idle.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/disk_modactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/disk_modactive.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/disk_modified.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/disk_modified.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/gfx_atmoskbd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/gfx_atmoskbd.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/gfx_atmoskbd.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/gfx_atmoskbd.psd -------------------------------------------------------------------------------- /Oric/emulator/images/gfx_oric1kbd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/gfx_oric1kbd.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/gfx_pravetzkbd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/gfx_pravetzkbd.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/statusbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/statusbar.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/tape_ejected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/tape_ejected.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/tape_pause.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/tape_pause.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/tape_play.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/tape_play.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/tape_record.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/tape_record.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/tape_stop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/tape_stop.bmp -------------------------------------------------------------------------------- /Oric/emulator/images/winicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/images/winicon.bmp -------------------------------------------------------------------------------- /Oric/emulator/oricutron-sdl2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/oricutron-sdl2.exe -------------------------------------------------------------------------------- /Oric/emulator/oricutron.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/oricutron.cfg -------------------------------------------------------------------------------- /Oric/emulator/oricutron.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/oricutron.exe -------------------------------------------------------------------------------- /Oric/emulator/pravdisks/100.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/pravdisks/100.dsk -------------------------------------------------------------------------------- /Oric/emulator/pravdisks/130.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/pravdisks/130.dsk -------------------------------------------------------------------------------- /Oric/emulator/pravdisks/210.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/pravdisks/210.dsk -------------------------------------------------------------------------------- /Oric/emulator/pravdisks/231.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/pravdisks/231.dsk -------------------------------------------------------------------------------- /Oric/emulator/printer_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/printer_out.txt -------------------------------------------------------------------------------- /Oric/emulator/roms/8dos.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/8dos.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/8dos.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/8dos.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/8dos2.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/8dos2.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/8dos2.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/8dos2.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/Bas122de.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/Bas122de.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/Bas122fr.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/Bas122fr.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/Bas122uk.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/Bas122uk.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/MICRODIS.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/MICRODIS.ROM -------------------------------------------------------------------------------- /Oric/emulator/roms/basic10.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/basic10.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/basic10.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/basic10.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/basic10.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/basic10.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/basic11b.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/basic11b.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/basic11b.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/basic11b.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/basic11b.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/basic11b.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/bd500.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/bd500.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/bd500.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/bd500.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/cumana.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/cumana.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/cumana.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/cumana.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/dflat.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/dflat.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/dflat.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/dflat.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/hyperbas.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/hyperbas.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/jasmin.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/jasmin.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/jasmin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/jasmin.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/microdis.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/microdis.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/oric11b.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/oric11b.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/pch-template.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pch-template.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/pravetzt-1.0.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pravetzt-1.0.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/pravetzt-1.0.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pravetzt-1.0.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/pravetzt-1.0.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pravetzt-1.0.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/pravetzt.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pravetzt.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/pravetzt.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pravetzt.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/pravetzt.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/pravetzt.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/sedoric.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/sedoric.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/teleass.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/teleass.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/teleass.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/teleass.sym -------------------------------------------------------------------------------- /Oric/emulator/roms/telmatic.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/telmatic.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/telmon24.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/telmon24.pch -------------------------------------------------------------------------------- /Oric/emulator/roms/telmon24.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/telmon24.rom -------------------------------------------------------------------------------- /Oric/emulator/roms/telmon24.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/roms/telmon24.sym -------------------------------------------------------------------------------- /Oric/emulator/tapes/OricBASIC/GCAATTACK.TAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/tapes/OricBASIC/GCAATTACK.TAP -------------------------------------------------------------------------------- /Oric/emulator/tapes/OricBASIC/GCALIENS.TAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/tapes/OricBASIC/GCALIENS.TAP -------------------------------------------------------------------------------- /Oric/emulator/teledisks/stratsed.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/emulator/teledisks/stratsed.dsk -------------------------------------------------------------------------------- /Oric/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/readme.txt -------------------------------------------------------------------------------- /Oric/software/dflat/demos/festival/fest2023.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/festival/fest2023.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/graphics/bigspr.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/graphics/bigspr.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/graphics/hicol.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/graphics/hicol.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/graphics/line.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/graphics/line.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/graphics/mcsprite.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/graphics/mcsprite.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/graphics/sprdemo.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/graphics/sprdemo.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/social/thanks.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/social/thanks.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/social/xmastwit.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/social/xmastwit.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/AhaTake.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/AhaTake.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/BOOM.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/BOOM.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/CLTime.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/CLTime.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/Depeche.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/Depeche.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/FUN.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/FUN.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/GhostnG.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/GhostnG.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/Limahl.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/Limahl.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/MFrozen.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/MFrozen.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/NINJA.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/NINJA.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/NirvTeen.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/NirvTeen.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/Oxygene4.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/Oxygene4.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/RHCreep.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/RHCreep.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/RT.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/RT.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/RWFeel.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/RWFeel.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/SMario.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/SMario.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/SpaceNY.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/SpaceNY.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/StarWars.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/StarWars.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/TELEGA.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/TELEGA.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/TEST.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/TEST.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/WhiteXms.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/WhiteXms.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/attract.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/attract.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/popcorn.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/popcorn.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/ppt37700.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/ppt37700.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/ppt37800.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/ppt37800.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/ppt37900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/ppt37900.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/ptdemo.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/ptdemo.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/pt3/win1.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/pt3/win1.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/demos/sound/rttl/rttlplay.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/sound/rttl/rttlplay.tap -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/1-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/1-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/10-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/10-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/11-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/11-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/12-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/12-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/13-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/13-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/14-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/14-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/2-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/2-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/3-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/3-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/4-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/4-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/5-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/5-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/6-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/6-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/7-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/7-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/8-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/8-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/9-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/9-small.bin -------------------------------------------------------------------------------- /Oric/software/dflat/demos/space/spacegal.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/demos/space/spacegal.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/TETRIS.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/TETRIS.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/attract.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/attract.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/games/defender.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/defender.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/explore7.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/explore7.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/inv256.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/inv256.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/inv3d.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/inv3d.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/kong.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/kong.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/lander.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/lander.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/pix.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/pix.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/popcorn.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/popcorn.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/games/ppt37900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/ppt37900.bin -------------------------------------------------------------------------------- /Oric/software/dflat/games/tetris2.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/tetris2.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/triangle.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/triangle.tap -------------------------------------------------------------------------------- /Oric/software/dflat/games/win1.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/games/win1.pt3 -------------------------------------------------------------------------------- /Oric/software/dflat/test/line2.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/test/line2.tap -------------------------------------------------------------------------------- /Oric/software/dflat/test/numspeed.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/test/numspeed.tap -------------------------------------------------------------------------------- /Oric/software/dflat/test/pcwbench.tap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/dflat/test/pcwbench.tap -------------------------------------------------------------------------------- /Oric/software/make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/make.ps1 -------------------------------------------------------------------------------- /Oric/software/project/images/1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/1.raw -------------------------------------------------------------------------------- /Oric/software/project/images/10.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/10.raw -------------------------------------------------------------------------------- /Oric/software/project/images/11.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/11.raw -------------------------------------------------------------------------------- /Oric/software/project/images/12.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/12.raw -------------------------------------------------------------------------------- /Oric/software/project/images/13.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/13.raw -------------------------------------------------------------------------------- /Oric/software/project/images/14.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/14.raw -------------------------------------------------------------------------------- /Oric/software/project/images/2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/2.raw -------------------------------------------------------------------------------- /Oric/software/project/images/3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/3.raw -------------------------------------------------------------------------------- /Oric/software/project/images/4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/4.raw -------------------------------------------------------------------------------- /Oric/software/project/images/5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/5.raw -------------------------------------------------------------------------------- /Oric/software/project/images/6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/6.raw -------------------------------------------------------------------------------- /Oric/software/project/images/7.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/7.raw -------------------------------------------------------------------------------- /Oric/software/project/images/8.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/8.raw -------------------------------------------------------------------------------- /Oric/software/project/images/9.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/images/9.raw -------------------------------------------------------------------------------- /Oric/software/project/pt3/as65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/as65 -------------------------------------------------------------------------------- /Oric/software/project/pt3/as65.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/as65.exe -------------------------------------------------------------------------------- /Oric/software/project/pt3/as65.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/as65.man -------------------------------------------------------------------------------- /Oric/software/project/pt3/make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/make.ps1 -------------------------------------------------------------------------------- /Oric/software/project/pt3/ppt3.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/ppt3.lst -------------------------------------------------------------------------------- /Oric/software/project/pt3/ppt3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/ppt3.s -------------------------------------------------------------------------------- /Oric/software/project/pt3/ppt37900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/ppt37900.bin -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/AhaTake.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/AhaTake.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/BOOM.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/BOOM.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/CLTime.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/CLTime.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/Depeche.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/Depeche.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/FUN.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/FUN.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/GhostnG.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/GhostnG.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/Limahl.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/Limahl.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/MFrozen.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/MFrozen.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/NINJA.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/NINJA.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/NirvTeen.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/NirvTeen.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/Oxygene4.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/Oxygene4.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/RHCreep.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/RHCreep.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/RT.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/RT.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/RWFeel.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/RWFeel.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/SMario.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/SMario.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/SpaceNY.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/SpaceNY.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/StarWars.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/StarWars.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/TELEGA.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/TELEGA.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/TEST.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/TEST.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/WhiteXms.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/WhiteXms.pt3 -------------------------------------------------------------------------------- /Oric/software/project/pt3/tunes/popcorn.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/project/pt3/tunes/popcorn.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/festival/fest2023.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/festival/fest2023.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/graphics/bigspr.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/graphics/bigspr.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/graphics/hicol.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/graphics/hicol.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/graphics/line.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/graphics/line.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/graphics/mcsprite.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/graphics/mcsprite.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/graphics/sprdemo.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/graphics/sprdemo.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/social/thanks.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/social/thanks.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/social/xmastwit.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/social/xmastwit.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/AhaTake.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/AhaTake.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/BOOM.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/BOOM.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/CLTime.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/CLTime.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/Depeche.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/Depeche.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/FUN.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/FUN.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/GhostnG.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/GhostnG.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/Limahl.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/Limahl.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/MFrozen.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/MFrozen.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/NINJA.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/NINJA.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/NirvTeen.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/NirvTeen.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/Oxygene4.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/Oxygene4.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/RHCreep.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/RHCreep.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/RT.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/RT.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/RWFeel.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/RWFeel.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/SMario.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/SMario.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/SpaceNY.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/SpaceNY.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/StarWars.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/StarWars.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/TELEGA.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/TELEGA.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/TEST.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/TEST.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/WhiteXms.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/WhiteXms.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/attract.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/attract.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/popcorn.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/popcorn.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/ppt37700.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/ppt37700.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/ppt37800.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/ppt37800.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/ppt37900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/ppt37900.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/ptdemo.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/ptdemo.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/pt3/win1.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/pt3/win1.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/sound/rttl/rttlplay.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/sound/rttl/rttlplay.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/1-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/1-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/10-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/10-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/11-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/11-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/12-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/12-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/13-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/13-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/14-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/14-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/2-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/2-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/3-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/3-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/4-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/4-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/5-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/5-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/6-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/6-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/7-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/7-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/8-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/8-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/9-small.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/9-small.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/demos/space/spacegal.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/demos/space/spacegal.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/TETRIS.PRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/TETRIS.PRG -------------------------------------------------------------------------------- /Oric/software/sd-src/games/attract.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/attract.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/games/defender.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/defender.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/explore7.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/explore7.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/inv256.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/inv256.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/inv3d.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/inv3d.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/kong.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/kong.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/lander.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/lander.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/pix.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/pix.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/popcorn.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/popcorn.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/games/ppt37900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/ppt37900.bin -------------------------------------------------------------------------------- /Oric/software/sd-src/games/tetris2.PRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/tetris2.PRG -------------------------------------------------------------------------------- /Oric/software/sd-src/games/triangle.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/triangle.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/games/win1.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/games/win1.pt3 -------------------------------------------------------------------------------- /Oric/software/sd-src/test/line2.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/test/line2.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/test/numspeed.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/test/numspeed.prg -------------------------------------------------------------------------------- /Oric/software/sd-src/test/pcwbench.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/software/sd-src/test/pcwbench.prg -------------------------------------------------------------------------------- /Oric/util/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /Oric/util/bin/dfbin2tap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/bin/dfbin2tap.exe -------------------------------------------------------------------------------- /Oric/util/bin/dftap2txt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/bin/dftap2txt.exe -------------------------------------------------------------------------------- /Oric/util/bin/dftap2wav.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/bin/dftap2wav.exe -------------------------------------------------------------------------------- /Oric/util/bin/dftxt2tap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/bin/dftxt2tap.exe -------------------------------------------------------------------------------- /Oric/util/dfbin2tap/dfbin2tap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dfbin2tap/dfbin2tap.cpp -------------------------------------------------------------------------------- /Oric/util/dfbin2tap/dfbin2tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dfbin2tap/dfbin2tap.h -------------------------------------------------------------------------------- /Oric/util/dftap2txt/dftap2txt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dftap2txt/dftap2txt.cpp -------------------------------------------------------------------------------- /Oric/util/dftap2txt/dftap2txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dftap2txt/dftap2txt.h -------------------------------------------------------------------------------- /Oric/util/dftap2wav/dftap2wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dftap2wav/dftap2wav.cpp -------------------------------------------------------------------------------- /Oric/util/dftap2wav/dftap2wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dftap2wav/dftap2wav.h -------------------------------------------------------------------------------- /Oric/util/dftxt2tap/dftxt2tap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dftxt2tap/dftxt2tap.cpp -------------------------------------------------------------------------------- /Oric/util/dftxt2tap/dftxt2tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/dftxt2tap/dftxt2tap.h -------------------------------------------------------------------------------- /Oric/util/make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/util/make.ps1 -------------------------------------------------------------------------------- /Oric/vsc-lang/dflat_programming_language/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/dflat_programming_language/.vscode/launch.json -------------------------------------------------------------------------------- /Oric/vsc-lang/dflat_programming_language/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/dflat_programming_language/.vscodeignore -------------------------------------------------------------------------------- /Oric/vsc-lang/dflat_programming_language/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/dflat_programming_language/language-configuration.json -------------------------------------------------------------------------------- /Oric/vsc-lang/dflat_programming_language/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/dflat_programming_language/package.json -------------------------------------------------------------------------------- /Oric/vsc-lang/dflat_programming_language/syntaxes/dflat.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/dflat_programming_language/syntaxes/dflat.tmLanguage.json -------------------------------------------------------------------------------- /Oric/vsc-lang/e-_programming_language/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/e-_programming_language/.vscode/launch.json -------------------------------------------------------------------------------- /Oric/vsc-lang/e-_programming_language/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/e-_programming_language/.vscodeignore -------------------------------------------------------------------------------- /Oric/vsc-lang/e-_programming_language/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/e-_programming_language/language-configuration.json -------------------------------------------------------------------------------- /Oric/vsc-lang/e-_programming_language/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/e-_programming_language/package.json -------------------------------------------------------------------------------- /Oric/vsc-lang/e-_programming_language/syntaxes/e-.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/Oric/vsc-lang/e-_programming_language/syntaxes/e-.tmLanguage.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/README.md -------------------------------------------------------------------------------- /wiki-files/hires-line-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/wiki-files/hires-line-circle.png -------------------------------------------------------------------------------- /wiki-files/plot-scrn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/wiki-files/plot-scrn.png -------------------------------------------------------------------------------- /wiki-files/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/wiki-files/readme.txt -------------------------------------------------------------------------------- /wiki-files/sprite-example-1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6502Nerd/dflat/HEAD/wiki-files/sprite-example-1.mp4 --------------------------------------------------------------------------------