├── .gitignore ├── BOSSHELL.8Xg ├── BOSxgifV.txt ├── BOSximgE.txt ├── LICENSE ├── README.txt ├── backgrounds ├── gfx │ ├── backgrounds.inc │ ├── convimg.yaml │ └── xlibc.asm └── include │ ├── ez80.inc │ └── tiformat.inc ├── docs ├── BOSconfg_ex.txt ├── BOSfolds_ex.txt ├── BOSptoav.txt ├── BOSshell_4_10_2_test.png ├── BOSshell_4_10_2_test_2.png ├── BOSxgifV.txt ├── BOSximgE.txt ├── LICENSE.txt ├── README.txt ├── assoc.html ├── config.html ├── dirs.html ├── editors.html ├── folds.html ├── head.html ├── headers.html ├── index.html ├── keymap.txt ├── packets.html ├── style_head.css └── style_main.css ├── keymap.txt └── src ├── BOSARC.8Xp ├── BOSDTSRC.8Xp ├── BOSEDIT.8Xp ├── BOSEDITP.8xp ├── BOSEXEC.8Xp ├── BOSFILES.8Xp ├── BOSSRC.8Xp ├── BOSTERM.8Xp ├── BOSdata.8xv └── asm ├── arcunarc ├── arcunarc.asm ├── arcunarc.hex ├── edit ├── edit.asm ├── edit.hex ├── include ├── ez80.inc └── ti84pceg.inc ├── runprgm ├── runprgm.asm └── runprgm.hex /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /BOSSHELL.8Xg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/BOSSHELL.8Xg -------------------------------------------------------------------------------- /BOSxgifV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/BOSxgifV.txt -------------------------------------------------------------------------------- /BOSximgE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/BOSximgE.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/README.txt -------------------------------------------------------------------------------- /backgrounds/gfx/backgrounds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/backgrounds/gfx/backgrounds.inc -------------------------------------------------------------------------------- /backgrounds/gfx/convimg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/backgrounds/gfx/convimg.yaml -------------------------------------------------------------------------------- /backgrounds/gfx/xlibc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/backgrounds/gfx/xlibc.asm -------------------------------------------------------------------------------- /backgrounds/include/ez80.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/backgrounds/include/ez80.inc -------------------------------------------------------------------------------- /backgrounds/include/tiformat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/backgrounds/include/tiformat.inc -------------------------------------------------------------------------------- /docs/BOSconfg_ex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSconfg_ex.txt -------------------------------------------------------------------------------- /docs/BOSfolds_ex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSfolds_ex.txt -------------------------------------------------------------------------------- /docs/BOSptoav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSptoav.txt -------------------------------------------------------------------------------- /docs/BOSshell_4_10_2_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSshell_4_10_2_test.png -------------------------------------------------------------------------------- /docs/BOSshell_4_10_2_test_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSshell_4_10_2_test_2.png -------------------------------------------------------------------------------- /docs/BOSxgifV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSxgifV.txt -------------------------------------------------------------------------------- /docs/BOSximgE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/BOSximgE.txt -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/assoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/assoc.html -------------------------------------------------------------------------------- /docs/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/config.html -------------------------------------------------------------------------------- /docs/dirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/dirs.html -------------------------------------------------------------------------------- /docs/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/editors.html -------------------------------------------------------------------------------- /docs/folds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/folds.html -------------------------------------------------------------------------------- /docs/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/head.html -------------------------------------------------------------------------------- /docs/headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/headers.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/keymap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/keymap.txt -------------------------------------------------------------------------------- /docs/packets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/packets.html -------------------------------------------------------------------------------- /docs/style_head.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/style_head.css -------------------------------------------------------------------------------- /docs/style_main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/docs/style_main.css -------------------------------------------------------------------------------- /keymap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/keymap.txt -------------------------------------------------------------------------------- /src/BOSARC.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSARC.8Xp -------------------------------------------------------------------------------- /src/BOSDTSRC.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSDTSRC.8Xp -------------------------------------------------------------------------------- /src/BOSEDIT.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSEDIT.8Xp -------------------------------------------------------------------------------- /src/BOSEDITP.8xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSEDITP.8xp -------------------------------------------------------------------------------- /src/BOSEXEC.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSEXEC.8Xp -------------------------------------------------------------------------------- /src/BOSFILES.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSFILES.8Xp -------------------------------------------------------------------------------- /src/BOSSRC.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSSRC.8Xp -------------------------------------------------------------------------------- /src/BOSTERM.8Xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSTERM.8Xp -------------------------------------------------------------------------------- /src/BOSdata.8xv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/BOSdata.8xv -------------------------------------------------------------------------------- /src/asm/arcunarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/arcunarc -------------------------------------------------------------------------------- /src/asm/arcunarc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/arcunarc.asm -------------------------------------------------------------------------------- /src/asm/arcunarc.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/arcunarc.hex -------------------------------------------------------------------------------- /src/asm/edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/edit -------------------------------------------------------------------------------- /src/asm/edit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/edit.asm -------------------------------------------------------------------------------- /src/asm/edit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/edit.hex -------------------------------------------------------------------------------- /src/asm/include/ez80.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/include/ez80.inc -------------------------------------------------------------------------------- /src/asm/include/ti84pceg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/include/ti84pceg.inc -------------------------------------------------------------------------------- /src/asm/runprgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/runprgm -------------------------------------------------------------------------------- /src/asm/runprgm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/runprgm.asm -------------------------------------------------------------------------------- /src/asm/runprgm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckadamtheinventor/BOSshellCE/HEAD/src/asm/runprgm.hex --------------------------------------------------------------------------------