├── .gitattributes ├── LICENSE ├── README.md ├── amiga ├── AmEGA.asm ├── AmiCon.asm ├── HWLogo.asm ├── IntuiTut.asm ├── LibIcon.asm ├── LibIcon.h ├── MakeIcon.asm ├── Makefile ├── PNG2Icon.c ├── README.md ├── SongCaption.asm ├── WavPlay.asm ├── WowCaption.asm ├── crown.png ├── gallery.asm ├── hamuwrapper.c ├── include │ ├── BareMetal.i │ ├── README.md │ └── SafeStart.i ├── petri.png ├── res │ └── logo128.png └── support │ └── makelogo.c ├── asm ├── apple │ ├── LogoGS.bin │ ├── bumber_ii.s │ ├── channels.s │ ├── colorbars_gs.s │ ├── ega_gs.s │ ├── gfx_bumbershoot.s │ ├── gswav.s │ ├── logo.txt │ ├── sfx_bumbershoot.s │ ├── showlogo.s │ ├── sound16.s │ ├── sound8a.s │ ├── sound8b.s │ ├── sound8c.s │ ├── sound8d.s │ └── soundfreq.s ├── autoboot_asm.s ├── autoboot_basic.s ├── bitmap.s ├── digicycle.s ├── fastvert.s ├── fld.s ├── fleyesore.s ├── fli_steps │ ├── fli1_final.s │ ├── fli1a.s │ ├── fli1b.s │ └── fli1c.s ├── fonts │ ├── halogen.s │ ├── sinestra.s │ └── tms9918.s ├── hsp.s ├── linecrunch.s ├── model.s ├── protomus.s ├── raster200.s ├── rescan.s ├── sha256.s ├── sha256test.s ├── slowvert.s ├── stabilize.s ├── xorshift.s └── xortest.s ├── atari_st ├── README.md ├── ay-3-8910-samples.ogg ├── banner.asm ├── hello.asm ├── liberty.asm ├── protomus.asm ├── scale.asm ├── xbtimer.asm └── xbtimer_simple.asm ├── basic ├── Makefile ├── a800_scrcode.bas ├── asm │ ├── autoboot_bsave.s │ ├── colorchart0.s │ ├── colorchart1.s │ ├── colorchart2.s │ ├── colorclock.s │ ├── fpeek1.s │ ├── hello.s │ ├── striping.s │ ├── usr.s │ └── winceotron.s ├── autoboot.bas ├── autoboot_hybrid.bas ├── c64_loader.py ├── colorchart0.bas ├── colorchart1.bas ├── colorchart2.bas ├── colorclock1.bas ├── colorclock2.bas ├── diffusion.bas ├── direditor.bas ├── ebs.bas ├── fpeek1.bas ├── fpeek2.bas ├── hello.bas ├── striping.bas ├── usr.bas └── winceotron.bas ├── classic_mac ├── FileTest.c ├── FileTest.make ├── FileTestLL.c ├── FileTestRaw.a ├── HelloWorld.c ├── HelloWorld.h ├── HelloWorld.make ├── HelloWorld.r └── XorShift.a ├── dos ├── README.md ├── build.bat ├── cga_comp.asm ├── cgalores.asm ├── cgalores.dat ├── clover.c ├── common │ ├── adlib.c │ ├── adlib.h │ ├── pit.c │ └── pit.h ├── hat │ ├── README.md │ ├── build.bat │ ├── c_hat.c │ ├── c_hataux.asm │ ├── cga.pas │ ├── cgaasm.pas │ ├── cgaext.asm │ ├── clean.bat │ ├── hat.bas │ ├── hat1.pas │ ├── hat2.pas │ ├── hat3.pas │ ├── hat4.pas │ ├── hataux.asm │ ├── keywait.asm │ ├── keywait.pas │ └── systimer.pas ├── imfplay.c ├── litesout.asm ├── prebuilt │ ├── clover.exe │ ├── imfplay.com │ └── litesout.com └── sound │ ├── 1_bit_dac.wav │ ├── 1bitdac.asm │ ├── blaster.asm │ ├── blastwow.asm │ ├── fmscale.asm │ ├── pcs_pwm.asm │ ├── pcs_pwm.wav │ ├── pcscale.asm │ └── wow.raw ├── full ├── badline.s ├── c64_digi.s ├── colorchart.s ├── diffusion.c ├── diffusion.s ├── galaxy │ ├── galaxy.s │ ├── game.s │ ├── graphics.s │ ├── input.s │ ├── instructions.s │ ├── logo.bin │ ├── logo.png │ ├── macros.s │ ├── main.s │ ├── random.s │ ├── title.s │ └── util.s ├── gallery2600.s ├── gallery800.s ├── hammurabi.s ├── hamurabi.c ├── hello_nes.s ├── hello_unrom.s ├── liberty.s ├── lights-nes │ ├── Makefile │ ├── board.s │ ├── charmap.inc │ ├── gfx.s │ ├── main.s │ ├── nrom_128.cfg │ ├── shell.s │ └── xorshift.s ├── lightsout.s ├── lightsout2600.s ├── magwest.s ├── nes_digisound.ogg ├── nes_samp.s ├── sprdma.s └── vramblit.s ├── gb ├── Makefile ├── gb_hello.s ├── life.s ├── lifemain.s ├── vector.s └── xorshift.s ├── genesis ├── 8k_dac.asm ├── 8k_dac.s ├── Makefile ├── README.md ├── bumberlogo.s ├── cca.s ├── ccamain.s ├── ccatitle.s ├── fakecga.s ├── fm_mus.asm ├── hello.s ├── joystick.s ├── logo.s ├── lz4dec.s ├── psg80.asm ├── psg_nyan.ogg ├── res │ ├── bachsong.bin │ ├── bumbersong.bin │ ├── logo_gen.png │ ├── logogfx.bin │ ├── nyansong.bin │ └── sinestra.bin ├── reset.s ├── sprcont.s ├── text.s ├── tools │ ├── bin2asmx.c │ ├── logo.py │ ├── makebach.py │ ├── makelogo.c │ ├── makenyan.py │ ├── smdfix.c │ └── srec2smd.py ├── xorshift.s └── z80load.s ├── mandelbrot ├── Makefile ├── MandelbrotAsm │ ├── MandelbrotAVX.asm │ ├── MandelbrotAsm.sln │ ├── MandelbrotAsm.vcxproj │ ├── MandelbrotAsm.vcxproj.filters │ ├── MandelbrotMain.c │ └── MandelbrotSSE.asm ├── README.md ├── avx.s ├── main.c ├── reference_impl.c ├── scalar.s ├── sse2.s └── stb_image_write.h ├── modern_mac ├── README.md └── macCCA │ ├── Makefile │ ├── res │ ├── CCA.icns │ ├── CCA.iconset │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ └── Info.plist │ └── src │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CCA.c │ ├── CCA.h │ ├── CCAView.h │ ├── CCAView.m │ ├── MainView.h │ ├── MainView.m │ ├── Makefile │ └── main.m ├── msxetc ├── Makefile ├── README.md ├── coleco │ ├── coleco_bios.asm │ └── gallery.asm ├── common │ └── gallerycore.asm ├── msx │ ├── gallery.asm │ └── msxbios.asm ├── res │ ├── g2loom.bin │ └── mltdemo.bin └── sg1000 │ ├── gallery.asm │ ├── sg1000bios.asm │ └── vdpmodes.asm ├── pico8 ├── cca.p8 ├── gallery.p8 ├── helix.p8 └── lights.p8 ├── sim_evo ├── AmiEvo.c ├── AmiEvo.info ├── AmigaSE.asm ├── Makefile ├── README.md ├── SimEvo.r ├── SimEvoMPW.make ├── SimEvoMac.c ├── SimEvoResources.h ├── SimEvoUtil.a ├── dos_evo.c ├── mcbitmap.s ├── modern_support.c ├── modern_support.h ├── simevo.c ├── simevo.h ├── simevo64.s ├── simevo_a800_atr.s ├── simevo_a800_shell.s ├── simevo_a800_xex.s ├── simevo_cli.c ├── simevo_dx9.c ├── simevo_sdl2.c ├── simevocore.s ├── simevost.c ├── stevolib.asm └── stevolib.h ├── sms ├── Makefile ├── hello.asm ├── horizmap.asm ├── multiscroll.asm ├── rainbow.asm ├── raster.asm ├── sega8bios.asm ├── sprcont.asm └── tools │ └── smsfix.c ├── snes ├── Makefile ├── audio.s ├── cca.s ├── ccamain.s ├── logo.s ├── lorom128.cfg ├── lorom128f.cfg ├── lorom64f.cfg ├── lz4dec.s ├── pbmp.s ├── pbmpmain.s ├── res │ ├── bumbershoot.brr │ └── orig │ │ ├── logosnes.png │ │ ├── pbmp_0.png │ │ └── pbmp_1.png ├── snes_init.s ├── soundtest.s ├── spc_digi.s ├── spc_mus.s ├── support │ ├── lz4_unframe.c │ ├── make_gfx.c │ ├── makelogo.c │ ├── pbmpconv.c │ ├── snes_checksum.c │ └── snesbach.py ├── xs16.s └── xss.s ├── sound ├── Makefile ├── bumbershoot.wav ├── conv_amiga.c ├── conv_coco.c ├── conv_dos.c ├── conv_iigs.c ├── conv_nes_dmc.c ├── conv_nes_pcm.c ├── conv_rle4.c ├── musicmacro.py ├── revbits.c ├── sndplay_dx9-res.h ├── sndplay_dx9.c ├── sndplay_dx9.rc ├── sndplay_sdl2.c ├── wavefile.c ├── wavefile.h └── wow.wav ├── ti99 ├── Makefile ├── README.md ├── cbanner.asm ├── gallery.asm ├── gbanner.gpl ├── nyancat.asm ├── vdplib.asm └── xorshift99.asm ├── trs80 ├── Makefile ├── README.md ├── bin2cmd.c ├── coco │ ├── Makefile │ ├── banner.s │ ├── bitmap.s │ ├── bmptxt.s │ ├── bumber.s │ ├── charmap.s │ ├── hello.s │ ├── liberty.s │ ├── linetest.s │ ├── lz4dec.s │ ├── res │ │ ├── banner.ogg │ │ └── bumber_gfx.bin │ ├── softsoniq.s │ └── support │ │ └── cococas.c ├── inpnum.asm ├── jabber.asm └── zoom.asm ├── win32 ├── DX9Gradient.c ├── Lights-Out.asm ├── LogoBounce-res.h ├── LogoBounce.c ├── LogoBounce.rc ├── README.md ├── WinCCA.c ├── WinClover.c ├── WinHat.c ├── WinLights.asm ├── WinLights.ico ├── WinLights.rc ├── dx9pixmap.c ├── dx9pixmap.h ├── dx9tile.c ├── dx9tile.h ├── hello.asm ├── img │ ├── logo.png │ └── mars.jpg ├── imgload.c ├── imgload.h └── stb_image.h ├── zx81 ├── Makefile ├── README.md ├── hello.asm ├── lightsout81.asm ├── mandala.asm ├── wallpaper.asm ├── xorshift.asm ├── xorshift_test.asm ├── zx81link.py └── zx81text.asm └── zxspectrum ├── README.md ├── lightsoutzx.asm └── spectralink.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/README.md -------------------------------------------------------------------------------- /amiga/AmEGA.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/AmEGA.asm -------------------------------------------------------------------------------- /amiga/AmiCon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/AmiCon.asm -------------------------------------------------------------------------------- /amiga/HWLogo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/HWLogo.asm -------------------------------------------------------------------------------- /amiga/IntuiTut.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/IntuiTut.asm -------------------------------------------------------------------------------- /amiga/LibIcon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/LibIcon.asm -------------------------------------------------------------------------------- /amiga/LibIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/LibIcon.h -------------------------------------------------------------------------------- /amiga/MakeIcon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/MakeIcon.asm -------------------------------------------------------------------------------- /amiga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/Makefile -------------------------------------------------------------------------------- /amiga/PNG2Icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/PNG2Icon.c -------------------------------------------------------------------------------- /amiga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/README.md -------------------------------------------------------------------------------- /amiga/SongCaption.asm: -------------------------------------------------------------------------------- 1 | dc.b "o/~ Bumbershoot o/~",10 2 | -------------------------------------------------------------------------------- /amiga/WavPlay.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/WavPlay.asm -------------------------------------------------------------------------------- /amiga/WowCaption.asm: -------------------------------------------------------------------------------- 1 | dc.b "Wow! Digital sound!",10 2 | -------------------------------------------------------------------------------- /amiga/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/crown.png -------------------------------------------------------------------------------- /amiga/gallery.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/gallery.asm -------------------------------------------------------------------------------- /amiga/hamuwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/hamuwrapper.c -------------------------------------------------------------------------------- /amiga/include/BareMetal.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/include/BareMetal.i -------------------------------------------------------------------------------- /amiga/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/include/README.md -------------------------------------------------------------------------------- /amiga/include/SafeStart.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/include/SafeStart.i -------------------------------------------------------------------------------- /amiga/petri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/petri.png -------------------------------------------------------------------------------- /amiga/res/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/res/logo128.png -------------------------------------------------------------------------------- /amiga/support/makelogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/amiga/support/makelogo.c -------------------------------------------------------------------------------- /asm/apple/LogoGS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/LogoGS.bin -------------------------------------------------------------------------------- /asm/apple/bumber_ii.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/bumber_ii.s -------------------------------------------------------------------------------- /asm/apple/channels.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/channels.s -------------------------------------------------------------------------------- /asm/apple/colorbars_gs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/colorbars_gs.s -------------------------------------------------------------------------------- /asm/apple/ega_gs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/ega_gs.s -------------------------------------------------------------------------------- /asm/apple/gfx_bumbershoot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/gfx_bumbershoot.s -------------------------------------------------------------------------------- /asm/apple/gswav.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/gswav.s -------------------------------------------------------------------------------- /asm/apple/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/logo.txt -------------------------------------------------------------------------------- /asm/apple/sfx_bumbershoot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/sfx_bumbershoot.s -------------------------------------------------------------------------------- /asm/apple/showlogo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/showlogo.s -------------------------------------------------------------------------------- /asm/apple/sound16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/sound16.s -------------------------------------------------------------------------------- /asm/apple/sound8a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/sound8a.s -------------------------------------------------------------------------------- /asm/apple/sound8b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/sound8b.s -------------------------------------------------------------------------------- /asm/apple/sound8c.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/sound8c.s -------------------------------------------------------------------------------- /asm/apple/sound8d.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/sound8d.s -------------------------------------------------------------------------------- /asm/apple/soundfreq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/apple/soundfreq.s -------------------------------------------------------------------------------- /asm/autoboot_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/autoboot_asm.s -------------------------------------------------------------------------------- /asm/autoboot_basic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/autoboot_basic.s -------------------------------------------------------------------------------- /asm/bitmap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/bitmap.s -------------------------------------------------------------------------------- /asm/digicycle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/digicycle.s -------------------------------------------------------------------------------- /asm/fastvert.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fastvert.s -------------------------------------------------------------------------------- /asm/fld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fld.s -------------------------------------------------------------------------------- /asm/fleyesore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fleyesore.s -------------------------------------------------------------------------------- /asm/fli_steps/fli1_final.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fli_steps/fli1_final.s -------------------------------------------------------------------------------- /asm/fli_steps/fli1a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fli_steps/fli1a.s -------------------------------------------------------------------------------- /asm/fli_steps/fli1b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fli_steps/fli1b.s -------------------------------------------------------------------------------- /asm/fli_steps/fli1c.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fli_steps/fli1c.s -------------------------------------------------------------------------------- /asm/fonts/halogen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fonts/halogen.s -------------------------------------------------------------------------------- /asm/fonts/sinestra.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fonts/sinestra.s -------------------------------------------------------------------------------- /asm/fonts/tms9918.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/fonts/tms9918.s -------------------------------------------------------------------------------- /asm/hsp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/hsp.s -------------------------------------------------------------------------------- /asm/linecrunch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/linecrunch.s -------------------------------------------------------------------------------- /asm/model.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/model.s -------------------------------------------------------------------------------- /asm/protomus.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/protomus.s -------------------------------------------------------------------------------- /asm/raster200.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/raster200.s -------------------------------------------------------------------------------- /asm/rescan.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/rescan.s -------------------------------------------------------------------------------- /asm/sha256.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/sha256.s -------------------------------------------------------------------------------- /asm/sha256test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/sha256test.s -------------------------------------------------------------------------------- /asm/slowvert.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/slowvert.s -------------------------------------------------------------------------------- /asm/stabilize.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/stabilize.s -------------------------------------------------------------------------------- /asm/xorshift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/xorshift.s -------------------------------------------------------------------------------- /asm/xortest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/asm/xortest.s -------------------------------------------------------------------------------- /atari_st/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/README.md -------------------------------------------------------------------------------- /atari_st/ay-3-8910-samples.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/ay-3-8910-samples.ogg -------------------------------------------------------------------------------- /atari_st/banner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/banner.asm -------------------------------------------------------------------------------- /atari_st/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/hello.asm -------------------------------------------------------------------------------- /atari_st/liberty.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/liberty.asm -------------------------------------------------------------------------------- /atari_st/protomus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/protomus.asm -------------------------------------------------------------------------------- /atari_st/scale.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/scale.asm -------------------------------------------------------------------------------- /atari_st/xbtimer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/xbtimer.asm -------------------------------------------------------------------------------- /atari_st/xbtimer_simple.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/atari_st/xbtimer_simple.asm -------------------------------------------------------------------------------- /basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/Makefile -------------------------------------------------------------------------------- /basic/a800_scrcode.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/a800_scrcode.bas -------------------------------------------------------------------------------- /basic/asm/autoboot_bsave.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/autoboot_bsave.s -------------------------------------------------------------------------------- /basic/asm/colorchart0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/colorchart0.s -------------------------------------------------------------------------------- /basic/asm/colorchart1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/colorchart1.s -------------------------------------------------------------------------------- /basic/asm/colorchart2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/colorchart2.s -------------------------------------------------------------------------------- /basic/asm/colorclock.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/colorclock.s -------------------------------------------------------------------------------- /basic/asm/fpeek1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/fpeek1.s -------------------------------------------------------------------------------- /basic/asm/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/hello.s -------------------------------------------------------------------------------- /basic/asm/striping.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/striping.s -------------------------------------------------------------------------------- /basic/asm/usr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/usr.s -------------------------------------------------------------------------------- /basic/asm/winceotron.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/asm/winceotron.s -------------------------------------------------------------------------------- /basic/autoboot.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/autoboot.bas -------------------------------------------------------------------------------- /basic/autoboot_hybrid.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/autoboot_hybrid.bas -------------------------------------------------------------------------------- /basic/c64_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/c64_loader.py -------------------------------------------------------------------------------- /basic/colorchart0.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/colorchart0.bas -------------------------------------------------------------------------------- /basic/colorchart1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/colorchart1.bas -------------------------------------------------------------------------------- /basic/colorchart2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/colorchart2.bas -------------------------------------------------------------------------------- /basic/colorclock1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/colorclock1.bas -------------------------------------------------------------------------------- /basic/colorclock2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/colorclock2.bas -------------------------------------------------------------------------------- /basic/diffusion.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/diffusion.bas -------------------------------------------------------------------------------- /basic/direditor.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/direditor.bas -------------------------------------------------------------------------------- /basic/ebs.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/ebs.bas -------------------------------------------------------------------------------- /basic/fpeek1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/fpeek1.bas -------------------------------------------------------------------------------- /basic/fpeek2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/fpeek2.bas -------------------------------------------------------------------------------- /basic/hello.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/hello.bas -------------------------------------------------------------------------------- /basic/striping.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/striping.bas -------------------------------------------------------------------------------- /basic/usr.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/usr.bas -------------------------------------------------------------------------------- /basic/winceotron.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/basic/winceotron.bas -------------------------------------------------------------------------------- /classic_mac/FileTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/FileTest.c -------------------------------------------------------------------------------- /classic_mac/FileTest.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/FileTest.make -------------------------------------------------------------------------------- /classic_mac/FileTestLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/FileTestLL.c -------------------------------------------------------------------------------- /classic_mac/FileTestRaw.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/FileTestRaw.a -------------------------------------------------------------------------------- /classic_mac/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/HelloWorld.c -------------------------------------------------------------------------------- /classic_mac/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/HelloWorld.h -------------------------------------------------------------------------------- /classic_mac/HelloWorld.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/HelloWorld.make -------------------------------------------------------------------------------- /classic_mac/HelloWorld.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/HelloWorld.r -------------------------------------------------------------------------------- /classic_mac/XorShift.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/classic_mac/XorShift.a -------------------------------------------------------------------------------- /dos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/README.md -------------------------------------------------------------------------------- /dos/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/build.bat -------------------------------------------------------------------------------- /dos/cga_comp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/cga_comp.asm -------------------------------------------------------------------------------- /dos/cgalores.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/cgalores.asm -------------------------------------------------------------------------------- /dos/cgalores.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/cgalores.dat -------------------------------------------------------------------------------- /dos/clover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/clover.c -------------------------------------------------------------------------------- /dos/common/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/common/adlib.c -------------------------------------------------------------------------------- /dos/common/adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/common/adlib.h -------------------------------------------------------------------------------- /dos/common/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/common/pit.c -------------------------------------------------------------------------------- /dos/common/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/common/pit.h -------------------------------------------------------------------------------- /dos/hat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/README.md -------------------------------------------------------------------------------- /dos/hat/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/build.bat -------------------------------------------------------------------------------- /dos/hat/c_hat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/c_hat.c -------------------------------------------------------------------------------- /dos/hat/c_hataux.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/c_hataux.asm -------------------------------------------------------------------------------- /dos/hat/cga.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/cga.pas -------------------------------------------------------------------------------- /dos/hat/cgaasm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/cgaasm.pas -------------------------------------------------------------------------------- /dos/hat/cgaext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/cgaext.asm -------------------------------------------------------------------------------- /dos/hat/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/clean.bat -------------------------------------------------------------------------------- /dos/hat/hat.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/hat.bas -------------------------------------------------------------------------------- /dos/hat/hat1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/hat1.pas -------------------------------------------------------------------------------- /dos/hat/hat2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/hat2.pas -------------------------------------------------------------------------------- /dos/hat/hat3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/hat3.pas -------------------------------------------------------------------------------- /dos/hat/hat4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/hat4.pas -------------------------------------------------------------------------------- /dos/hat/hataux.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/hataux.asm -------------------------------------------------------------------------------- /dos/hat/keywait.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/keywait.asm -------------------------------------------------------------------------------- /dos/hat/keywait.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/keywait.pas -------------------------------------------------------------------------------- /dos/hat/systimer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/hat/systimer.pas -------------------------------------------------------------------------------- /dos/imfplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/imfplay.c -------------------------------------------------------------------------------- /dos/litesout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/litesout.asm -------------------------------------------------------------------------------- /dos/prebuilt/clover.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/prebuilt/clover.exe -------------------------------------------------------------------------------- /dos/prebuilt/imfplay.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/prebuilt/imfplay.com -------------------------------------------------------------------------------- /dos/prebuilt/litesout.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/prebuilt/litesout.com -------------------------------------------------------------------------------- /dos/sound/1_bit_dac.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/1_bit_dac.wav -------------------------------------------------------------------------------- /dos/sound/1bitdac.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/1bitdac.asm -------------------------------------------------------------------------------- /dos/sound/blaster.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/blaster.asm -------------------------------------------------------------------------------- /dos/sound/blastwow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/blastwow.asm -------------------------------------------------------------------------------- /dos/sound/fmscale.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/fmscale.asm -------------------------------------------------------------------------------- /dos/sound/pcs_pwm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/pcs_pwm.asm -------------------------------------------------------------------------------- /dos/sound/pcs_pwm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/pcs_pwm.wav -------------------------------------------------------------------------------- /dos/sound/pcscale.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/pcscale.asm -------------------------------------------------------------------------------- /dos/sound/wow.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/dos/sound/wow.raw -------------------------------------------------------------------------------- /full/badline.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/badline.s -------------------------------------------------------------------------------- /full/c64_digi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/c64_digi.s -------------------------------------------------------------------------------- /full/colorchart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/colorchart.s -------------------------------------------------------------------------------- /full/diffusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/diffusion.c -------------------------------------------------------------------------------- /full/diffusion.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/diffusion.s -------------------------------------------------------------------------------- /full/galaxy/galaxy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/galaxy.s -------------------------------------------------------------------------------- /full/galaxy/game.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/game.s -------------------------------------------------------------------------------- /full/galaxy/graphics.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/graphics.s -------------------------------------------------------------------------------- /full/galaxy/input.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/input.s -------------------------------------------------------------------------------- /full/galaxy/instructions.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/instructions.s -------------------------------------------------------------------------------- /full/galaxy/logo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/logo.bin -------------------------------------------------------------------------------- /full/galaxy/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/logo.png -------------------------------------------------------------------------------- /full/galaxy/macros.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/macros.s -------------------------------------------------------------------------------- /full/galaxy/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/main.s -------------------------------------------------------------------------------- /full/galaxy/random.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/random.s -------------------------------------------------------------------------------- /full/galaxy/title.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/title.s -------------------------------------------------------------------------------- /full/galaxy/util.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/galaxy/util.s -------------------------------------------------------------------------------- /full/gallery2600.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/gallery2600.s -------------------------------------------------------------------------------- /full/gallery800.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/gallery800.s -------------------------------------------------------------------------------- /full/hammurabi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/hammurabi.s -------------------------------------------------------------------------------- /full/hamurabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/hamurabi.c -------------------------------------------------------------------------------- /full/hello_nes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/hello_nes.s -------------------------------------------------------------------------------- /full/hello_unrom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/hello_unrom.s -------------------------------------------------------------------------------- /full/liberty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/liberty.s -------------------------------------------------------------------------------- /full/lights-nes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/Makefile -------------------------------------------------------------------------------- /full/lights-nes/board.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/board.s -------------------------------------------------------------------------------- /full/lights-nes/charmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/charmap.inc -------------------------------------------------------------------------------- /full/lights-nes/gfx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/gfx.s -------------------------------------------------------------------------------- /full/lights-nes/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/main.s -------------------------------------------------------------------------------- /full/lights-nes/nrom_128.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/nrom_128.cfg -------------------------------------------------------------------------------- /full/lights-nes/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/shell.s -------------------------------------------------------------------------------- /full/lights-nes/xorshift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lights-nes/xorshift.s -------------------------------------------------------------------------------- /full/lightsout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lightsout.s -------------------------------------------------------------------------------- /full/lightsout2600.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/lightsout2600.s -------------------------------------------------------------------------------- /full/magwest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/magwest.s -------------------------------------------------------------------------------- /full/nes_digisound.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/nes_digisound.ogg -------------------------------------------------------------------------------- /full/nes_samp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/nes_samp.s -------------------------------------------------------------------------------- /full/sprdma.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/sprdma.s -------------------------------------------------------------------------------- /full/vramblit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/full/vramblit.s -------------------------------------------------------------------------------- /gb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/gb/Makefile -------------------------------------------------------------------------------- /gb/gb_hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/gb/gb_hello.s -------------------------------------------------------------------------------- /gb/life.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/gb/life.s -------------------------------------------------------------------------------- /gb/lifemain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/gb/lifemain.s -------------------------------------------------------------------------------- /gb/vector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/gb/vector.s -------------------------------------------------------------------------------- /gb/xorshift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/gb/xorshift.s -------------------------------------------------------------------------------- /genesis/8k_dac.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/8k_dac.asm -------------------------------------------------------------------------------- /genesis/8k_dac.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/8k_dac.s -------------------------------------------------------------------------------- /genesis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/Makefile -------------------------------------------------------------------------------- /genesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/README.md -------------------------------------------------------------------------------- /genesis/bumberlogo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/bumberlogo.s -------------------------------------------------------------------------------- /genesis/cca.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/cca.s -------------------------------------------------------------------------------- /genesis/ccamain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/ccamain.s -------------------------------------------------------------------------------- /genesis/ccatitle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/ccatitle.s -------------------------------------------------------------------------------- /genesis/fakecga.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/fakecga.s -------------------------------------------------------------------------------- /genesis/fm_mus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/fm_mus.asm -------------------------------------------------------------------------------- /genesis/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/hello.s -------------------------------------------------------------------------------- /genesis/joystick.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/joystick.s -------------------------------------------------------------------------------- /genesis/logo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/logo.s -------------------------------------------------------------------------------- /genesis/lz4dec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/lz4dec.s -------------------------------------------------------------------------------- /genesis/psg80.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/psg80.asm -------------------------------------------------------------------------------- /genesis/psg_nyan.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/psg_nyan.ogg -------------------------------------------------------------------------------- /genesis/res/bachsong.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/res/bachsong.bin -------------------------------------------------------------------------------- /genesis/res/bumbersong.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/res/bumbersong.bin -------------------------------------------------------------------------------- /genesis/res/logo_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/res/logo_gen.png -------------------------------------------------------------------------------- /genesis/res/logogfx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/res/logogfx.bin -------------------------------------------------------------------------------- /genesis/res/nyansong.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/res/nyansong.bin -------------------------------------------------------------------------------- /genesis/res/sinestra.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/res/sinestra.bin -------------------------------------------------------------------------------- /genesis/reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/reset.s -------------------------------------------------------------------------------- /genesis/sprcont.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/sprcont.s -------------------------------------------------------------------------------- /genesis/text.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/text.s -------------------------------------------------------------------------------- /genesis/tools/bin2asmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/bin2asmx.c -------------------------------------------------------------------------------- /genesis/tools/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/logo.py -------------------------------------------------------------------------------- /genesis/tools/makebach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/makebach.py -------------------------------------------------------------------------------- /genesis/tools/makelogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/makelogo.c -------------------------------------------------------------------------------- /genesis/tools/makenyan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/makenyan.py -------------------------------------------------------------------------------- /genesis/tools/smdfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/smdfix.c -------------------------------------------------------------------------------- /genesis/tools/srec2smd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/tools/srec2smd.py -------------------------------------------------------------------------------- /genesis/xorshift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/xorshift.s -------------------------------------------------------------------------------- /genesis/z80load.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/genesis/z80load.s -------------------------------------------------------------------------------- /mandelbrot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/Makefile -------------------------------------------------------------------------------- /mandelbrot/MandelbrotAsm/MandelbrotAVX.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/MandelbrotAsm/MandelbrotAVX.asm -------------------------------------------------------------------------------- /mandelbrot/MandelbrotAsm/MandelbrotAsm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/MandelbrotAsm/MandelbrotAsm.sln -------------------------------------------------------------------------------- /mandelbrot/MandelbrotAsm/MandelbrotAsm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/MandelbrotAsm/MandelbrotAsm.vcxproj -------------------------------------------------------------------------------- /mandelbrot/MandelbrotAsm/MandelbrotAsm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/MandelbrotAsm/MandelbrotAsm.vcxproj.filters -------------------------------------------------------------------------------- /mandelbrot/MandelbrotAsm/MandelbrotMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/MandelbrotAsm/MandelbrotMain.c -------------------------------------------------------------------------------- /mandelbrot/MandelbrotAsm/MandelbrotSSE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/MandelbrotAsm/MandelbrotSSE.asm -------------------------------------------------------------------------------- /mandelbrot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/README.md -------------------------------------------------------------------------------- /mandelbrot/avx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/avx.s -------------------------------------------------------------------------------- /mandelbrot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/main.c -------------------------------------------------------------------------------- /mandelbrot/reference_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/reference_impl.c -------------------------------------------------------------------------------- /mandelbrot/scalar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/scalar.s -------------------------------------------------------------------------------- /mandelbrot/sse2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/sse2.s -------------------------------------------------------------------------------- /mandelbrot/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/mandelbrot/stb_image_write.h -------------------------------------------------------------------------------- /modern_mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/README.md -------------------------------------------------------------------------------- /modern_mac/macCCA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/Makefile -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.icns -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_128x128.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_16x16.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_256x256.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_32x32.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_512x512.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/CCA.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/CCA.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /modern_mac/macCCA/res/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/res/Info.plist -------------------------------------------------------------------------------- /modern_mac/macCCA/src/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/AppDelegate.h -------------------------------------------------------------------------------- /modern_mac/macCCA/src/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/AppDelegate.m -------------------------------------------------------------------------------- /modern_mac/macCCA/src/CCA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/CCA.c -------------------------------------------------------------------------------- /modern_mac/macCCA/src/CCA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/CCA.h -------------------------------------------------------------------------------- /modern_mac/macCCA/src/CCAView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/CCAView.h -------------------------------------------------------------------------------- /modern_mac/macCCA/src/CCAView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/CCAView.m -------------------------------------------------------------------------------- /modern_mac/macCCA/src/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/MainView.h -------------------------------------------------------------------------------- /modern_mac/macCCA/src/MainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/MainView.m -------------------------------------------------------------------------------- /modern_mac/macCCA/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/Makefile -------------------------------------------------------------------------------- /modern_mac/macCCA/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/modern_mac/macCCA/src/main.m -------------------------------------------------------------------------------- /msxetc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/Makefile -------------------------------------------------------------------------------- /msxetc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/README.md -------------------------------------------------------------------------------- /msxetc/coleco/coleco_bios.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/coleco/coleco_bios.asm -------------------------------------------------------------------------------- /msxetc/coleco/gallery.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/coleco/gallery.asm -------------------------------------------------------------------------------- /msxetc/common/gallerycore.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/common/gallerycore.asm -------------------------------------------------------------------------------- /msxetc/msx/gallery.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/msx/gallery.asm -------------------------------------------------------------------------------- /msxetc/msx/msxbios.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/msx/msxbios.asm -------------------------------------------------------------------------------- /msxetc/res/g2loom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/res/g2loom.bin -------------------------------------------------------------------------------- /msxetc/res/mltdemo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/res/mltdemo.bin -------------------------------------------------------------------------------- /msxetc/sg1000/gallery.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/sg1000/gallery.asm -------------------------------------------------------------------------------- /msxetc/sg1000/sg1000bios.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/sg1000/sg1000bios.asm -------------------------------------------------------------------------------- /msxetc/sg1000/vdpmodes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/msxetc/sg1000/vdpmodes.asm -------------------------------------------------------------------------------- /pico8/cca.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/pico8/cca.p8 -------------------------------------------------------------------------------- /pico8/gallery.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/pico8/gallery.p8 -------------------------------------------------------------------------------- /pico8/helix.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/pico8/helix.p8 -------------------------------------------------------------------------------- /pico8/lights.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/pico8/lights.p8 -------------------------------------------------------------------------------- /sim_evo/AmiEvo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/AmiEvo.c -------------------------------------------------------------------------------- /sim_evo/AmiEvo.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/AmiEvo.info -------------------------------------------------------------------------------- /sim_evo/AmigaSE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/AmigaSE.asm -------------------------------------------------------------------------------- /sim_evo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/Makefile -------------------------------------------------------------------------------- /sim_evo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/README.md -------------------------------------------------------------------------------- /sim_evo/SimEvo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/SimEvo.r -------------------------------------------------------------------------------- /sim_evo/SimEvoMPW.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/SimEvoMPW.make -------------------------------------------------------------------------------- /sim_evo/SimEvoMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/SimEvoMac.c -------------------------------------------------------------------------------- /sim_evo/SimEvoResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/SimEvoResources.h -------------------------------------------------------------------------------- /sim_evo/SimEvoUtil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/SimEvoUtil.a -------------------------------------------------------------------------------- /sim_evo/dos_evo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/dos_evo.c -------------------------------------------------------------------------------- /sim_evo/mcbitmap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/mcbitmap.s -------------------------------------------------------------------------------- /sim_evo/modern_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/modern_support.c -------------------------------------------------------------------------------- /sim_evo/modern_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/modern_support.h -------------------------------------------------------------------------------- /sim_evo/simevo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo.c -------------------------------------------------------------------------------- /sim_evo/simevo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo.h -------------------------------------------------------------------------------- /sim_evo/simevo64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo64.s -------------------------------------------------------------------------------- /sim_evo/simevo_a800_atr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo_a800_atr.s -------------------------------------------------------------------------------- /sim_evo/simevo_a800_shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo_a800_shell.s -------------------------------------------------------------------------------- /sim_evo/simevo_a800_xex.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo_a800_xex.s -------------------------------------------------------------------------------- /sim_evo/simevo_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo_cli.c -------------------------------------------------------------------------------- /sim_evo/simevo_dx9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo_dx9.c -------------------------------------------------------------------------------- /sim_evo/simevo_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevo_sdl2.c -------------------------------------------------------------------------------- /sim_evo/simevocore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevocore.s -------------------------------------------------------------------------------- /sim_evo/simevost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/simevost.c -------------------------------------------------------------------------------- /sim_evo/stevolib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/stevolib.asm -------------------------------------------------------------------------------- /sim_evo/stevolib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sim_evo/stevolib.h -------------------------------------------------------------------------------- /sms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/Makefile -------------------------------------------------------------------------------- /sms/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/hello.asm -------------------------------------------------------------------------------- /sms/horizmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/horizmap.asm -------------------------------------------------------------------------------- /sms/multiscroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/multiscroll.asm -------------------------------------------------------------------------------- /sms/rainbow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/rainbow.asm -------------------------------------------------------------------------------- /sms/raster.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/raster.asm -------------------------------------------------------------------------------- /sms/sega8bios.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/sega8bios.asm -------------------------------------------------------------------------------- /sms/sprcont.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/sprcont.asm -------------------------------------------------------------------------------- /sms/tools/smsfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sms/tools/smsfix.c -------------------------------------------------------------------------------- /snes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/Makefile -------------------------------------------------------------------------------- /snes/audio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/audio.s -------------------------------------------------------------------------------- /snes/cca.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/cca.s -------------------------------------------------------------------------------- /snes/ccamain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/ccamain.s -------------------------------------------------------------------------------- /snes/logo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/logo.s -------------------------------------------------------------------------------- /snes/lorom128.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/lorom128.cfg -------------------------------------------------------------------------------- /snes/lorom128f.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/lorom128f.cfg -------------------------------------------------------------------------------- /snes/lorom64f.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/lorom64f.cfg -------------------------------------------------------------------------------- /snes/lz4dec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/lz4dec.s -------------------------------------------------------------------------------- /snes/pbmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/pbmp.s -------------------------------------------------------------------------------- /snes/pbmpmain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/pbmpmain.s -------------------------------------------------------------------------------- /snes/res/bumbershoot.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/res/bumbershoot.brr -------------------------------------------------------------------------------- /snes/res/orig/logosnes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/res/orig/logosnes.png -------------------------------------------------------------------------------- /snes/res/orig/pbmp_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/res/orig/pbmp_0.png -------------------------------------------------------------------------------- /snes/res/orig/pbmp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/res/orig/pbmp_1.png -------------------------------------------------------------------------------- /snes/snes_init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/snes_init.s -------------------------------------------------------------------------------- /snes/soundtest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/soundtest.s -------------------------------------------------------------------------------- /snes/spc_digi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/spc_digi.s -------------------------------------------------------------------------------- /snes/spc_mus.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/spc_mus.s -------------------------------------------------------------------------------- /snes/support/lz4_unframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/support/lz4_unframe.c -------------------------------------------------------------------------------- /snes/support/make_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/support/make_gfx.c -------------------------------------------------------------------------------- /snes/support/makelogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/support/makelogo.c -------------------------------------------------------------------------------- /snes/support/pbmpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/support/pbmpconv.c -------------------------------------------------------------------------------- /snes/support/snes_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/support/snes_checksum.c -------------------------------------------------------------------------------- /snes/support/snesbach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/support/snesbach.py -------------------------------------------------------------------------------- /snes/xs16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/xs16.s -------------------------------------------------------------------------------- /snes/xss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/snes/xss.s -------------------------------------------------------------------------------- /sound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/Makefile -------------------------------------------------------------------------------- /sound/bumbershoot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/bumbershoot.wav -------------------------------------------------------------------------------- /sound/conv_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_amiga.c -------------------------------------------------------------------------------- /sound/conv_coco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_coco.c -------------------------------------------------------------------------------- /sound/conv_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_dos.c -------------------------------------------------------------------------------- /sound/conv_iigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_iigs.c -------------------------------------------------------------------------------- /sound/conv_nes_dmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_nes_dmc.c -------------------------------------------------------------------------------- /sound/conv_nes_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_nes_pcm.c -------------------------------------------------------------------------------- /sound/conv_rle4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/conv_rle4.c -------------------------------------------------------------------------------- /sound/musicmacro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/musicmacro.py -------------------------------------------------------------------------------- /sound/revbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/revbits.c -------------------------------------------------------------------------------- /sound/sndplay_dx9-res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/sndplay_dx9-res.h -------------------------------------------------------------------------------- /sound/sndplay_dx9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/sndplay_dx9.c -------------------------------------------------------------------------------- /sound/sndplay_dx9.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/sndplay_dx9.rc -------------------------------------------------------------------------------- /sound/sndplay_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/sndplay_sdl2.c -------------------------------------------------------------------------------- /sound/wavefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/wavefile.c -------------------------------------------------------------------------------- /sound/wavefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/wavefile.h -------------------------------------------------------------------------------- /sound/wow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/sound/wow.wav -------------------------------------------------------------------------------- /ti99/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/Makefile -------------------------------------------------------------------------------- /ti99/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/README.md -------------------------------------------------------------------------------- /ti99/cbanner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/cbanner.asm -------------------------------------------------------------------------------- /ti99/gallery.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/gallery.asm -------------------------------------------------------------------------------- /ti99/gbanner.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/gbanner.gpl -------------------------------------------------------------------------------- /ti99/nyancat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/nyancat.asm -------------------------------------------------------------------------------- /ti99/vdplib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/vdplib.asm -------------------------------------------------------------------------------- /ti99/xorshift99.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/ti99/xorshift99.asm -------------------------------------------------------------------------------- /trs80/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/Makefile -------------------------------------------------------------------------------- /trs80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/README.md -------------------------------------------------------------------------------- /trs80/bin2cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/bin2cmd.c -------------------------------------------------------------------------------- /trs80/coco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/Makefile -------------------------------------------------------------------------------- /trs80/coco/banner.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/banner.s -------------------------------------------------------------------------------- /trs80/coco/bitmap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/bitmap.s -------------------------------------------------------------------------------- /trs80/coco/bmptxt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/bmptxt.s -------------------------------------------------------------------------------- /trs80/coco/bumber.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/bumber.s -------------------------------------------------------------------------------- /trs80/coco/charmap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/charmap.s -------------------------------------------------------------------------------- /trs80/coco/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/hello.s -------------------------------------------------------------------------------- /trs80/coco/liberty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/liberty.s -------------------------------------------------------------------------------- /trs80/coco/linetest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/linetest.s -------------------------------------------------------------------------------- /trs80/coco/lz4dec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/lz4dec.s -------------------------------------------------------------------------------- /trs80/coco/res/banner.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/res/banner.ogg -------------------------------------------------------------------------------- /trs80/coco/res/bumber_gfx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/res/bumber_gfx.bin -------------------------------------------------------------------------------- /trs80/coco/softsoniq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/softsoniq.s -------------------------------------------------------------------------------- /trs80/coco/support/cococas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/coco/support/cococas.c -------------------------------------------------------------------------------- /trs80/inpnum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/inpnum.asm -------------------------------------------------------------------------------- /trs80/jabber.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/jabber.asm -------------------------------------------------------------------------------- /trs80/zoom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/trs80/zoom.asm -------------------------------------------------------------------------------- /win32/DX9Gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/DX9Gradient.c -------------------------------------------------------------------------------- /win32/Lights-Out.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/Lights-Out.asm -------------------------------------------------------------------------------- /win32/LogoBounce-res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/LogoBounce-res.h -------------------------------------------------------------------------------- /win32/LogoBounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/LogoBounce.c -------------------------------------------------------------------------------- /win32/LogoBounce.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/LogoBounce.rc -------------------------------------------------------------------------------- /win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/README.md -------------------------------------------------------------------------------- /win32/WinCCA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/WinCCA.c -------------------------------------------------------------------------------- /win32/WinClover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/WinClover.c -------------------------------------------------------------------------------- /win32/WinHat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/WinHat.c -------------------------------------------------------------------------------- /win32/WinLights.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/WinLights.asm -------------------------------------------------------------------------------- /win32/WinLights.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/WinLights.ico -------------------------------------------------------------------------------- /win32/WinLights.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/WinLights.rc -------------------------------------------------------------------------------- /win32/dx9pixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/dx9pixmap.c -------------------------------------------------------------------------------- /win32/dx9pixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/dx9pixmap.h -------------------------------------------------------------------------------- /win32/dx9tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/dx9tile.c -------------------------------------------------------------------------------- /win32/dx9tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/dx9tile.h -------------------------------------------------------------------------------- /win32/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/hello.asm -------------------------------------------------------------------------------- /win32/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/img/logo.png -------------------------------------------------------------------------------- /win32/img/mars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/img/mars.jpg -------------------------------------------------------------------------------- /win32/imgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/imgload.c -------------------------------------------------------------------------------- /win32/imgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/imgload.h -------------------------------------------------------------------------------- /win32/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/win32/stb_image.h -------------------------------------------------------------------------------- /zx81/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/Makefile -------------------------------------------------------------------------------- /zx81/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/README.md -------------------------------------------------------------------------------- /zx81/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/hello.asm -------------------------------------------------------------------------------- /zx81/lightsout81.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/lightsout81.asm -------------------------------------------------------------------------------- /zx81/mandala.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/mandala.asm -------------------------------------------------------------------------------- /zx81/wallpaper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/wallpaper.asm -------------------------------------------------------------------------------- /zx81/xorshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/xorshift.asm -------------------------------------------------------------------------------- /zx81/xorshift_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/xorshift_test.asm -------------------------------------------------------------------------------- /zx81/zx81link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/zx81link.py -------------------------------------------------------------------------------- /zx81/zx81text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zx81/zx81text.asm -------------------------------------------------------------------------------- /zxspectrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zxspectrum/README.md -------------------------------------------------------------------------------- /zxspectrum/lightsoutzx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zxspectrum/lightsoutzx.asm -------------------------------------------------------------------------------- /zxspectrum/spectralink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcmartin/bumbershoot/HEAD/zxspectrum/spectralink.py --------------------------------------------------------------------------------