├── README.md ├── bin └── gb303.gb ├── cart ├── README.md └── gb303-b.png ├── img ├── 2dpad.png ├── assign.png ├── keyboard.png ├── prot.jpg └── tracker.png └── src ├── arp.asm ├── common ├── gfx.asm ├── gfxutil.asm ├── loadtile.asm ├── ram.asm └── system.asm ├── confirm.asm ├── directives.inc ├── draw.asm ├── gb303.sym ├── gfx ├── alphaftk.bin ├── alphaftk.bmp ├── bignums.bin ├── bignums.bmp ├── curnote.bin ├── curnote.bmp ├── curseq.bin ├── curseq.bmp ├── curseq2.bin ├── curseq2.bmp ├── dists.bin ├── dists.bmp ├── error.bin ├── error.bmp ├── gridbg.bin ├── gridbg.bmp ├── gridcur.bin ├── gridcur.bmp ├── gridnote.bin ├── gridnote.bmp ├── keyb.bin ├── keyb.bmp ├── keyb.map ├── lfoshapes.bin ├── lfoshapes.bmp ├── logo.bin ├── logo.bmp ├── note.bin ├── note.bmp ├── notecur.bin ├── notedn.bin ├── notedn.bmp ├── noteoff.bin ├── noteoff.bmp ├── noteup.bin ├── noteup.bmp ├── pot.bin ├── pot.bmp ├── potlinks.bin ├── potlinks.bmp ├── screenmap.bin ├── screenmap.bmp ├── wingrad.bin └── wingrad.bmp ├── gparams.asm ├── hwio ├── eeprom.asm ├── getee.asm ├── pots.asm ├── serial.asm └── spi.asm ├── inittiles.asm ├── input ├── input_config.asm ├── input_live.asm ├── input_loadsave.asm ├── input_piano.asm ├── input_seq.asm ├── input_table.asm └── input_xy.asm ├── keyboard.asm ├── lfo.asm ├── linkfile ├── load.asm ├── main.s ├── make.bat ├── params.asm ├── play.asm ├── playback.asm ├── s_sq ├── tb303_sq_a0_r0.bin ├── tb303_sq_a0_r1.bin ├── tb303_sq_a0_r10.bin ├── tb303_sq_a0_r11.bin ├── tb303_sq_a0_r12.bin ├── tb303_sq_a0_r13.bin ├── tb303_sq_a0_r14.bin ├── tb303_sq_a0_r15.bin ├── tb303_sq_a0_r2.bin ├── tb303_sq_a0_r3.bin ├── tb303_sq_a0_r4.bin ├── tb303_sq_a0_r5.bin ├── tb303_sq_a0_r6.bin ├── tb303_sq_a0_r7.bin ├── tb303_sq_a0_r8.bin ├── tb303_sq_a0_r9.bin ├── tb303_sq_a1_r0.bin ├── tb303_sq_a1_r1.bin ├── tb303_sq_a1_r10.bin ├── tb303_sq_a1_r11.bin ├── tb303_sq_a1_r12.bin ├── tb303_sq_a1_r13.bin ├── tb303_sq_a1_r14.bin ├── tb303_sq_a1_r15.bin ├── tb303_sq_a1_r2.bin ├── tb303_sq_a1_r3.bin ├── tb303_sq_a1_r4.bin ├── tb303_sq_a1_r5.bin ├── tb303_sq_a1_r6.bin ├── tb303_sq_a1_r7.bin ├── tb303_sq_a1_r8.bin └── tb303_sq_a1_r9.bin ├── s_sw ├── tb303_sw_a0_r0.bin ├── tb303_sw_a0_r1.bin ├── tb303_sw_a0_r10.bin ├── tb303_sw_a0_r11.bin ├── tb303_sw_a0_r12.bin ├── tb303_sw_a0_r13.bin ├── tb303_sw_a0_r14.bin ├── tb303_sw_a0_r15.bin ├── tb303_sw_a0_r2.bin ├── tb303_sw_a0_r3.bin ├── tb303_sw_a0_r4.bin ├── tb303_sw_a0_r5.bin ├── tb303_sw_a0_r6.bin ├── tb303_sw_a0_r7.bin ├── tb303_sw_a0_r8.bin ├── tb303_sw_a0_r9.bin ├── tb303_sw_a1_r0.bin ├── tb303_sw_a1_r1.bin ├── tb303_sw_a1_r10.bin ├── tb303_sw_a1_r11.bin ├── tb303_sw_a1_r12.bin ├── tb303_sw_a1_r13.bin ├── tb303_sw_a1_r14.bin ├── tb303_sw_a1_r15.bin ├── tb303_sw_a1_r2.bin ├── tb303_sw_a1_r3.bin ├── tb303_sw_a1_r4.bin ├── tb303_sw_a1_r5.bin ├── tb303_sw_a1_r6.bin ├── tb303_sw_a1_r7.bin ├── tb303_sw_a1_r8.bin └── tb303_sw_a1_r9.bin ├── save.asm ├── screen.asm ├── setup ├── ss_config.asm ├── ss_credits.asm ├── ss_live.asm ├── ss_loadsave.asm ├── ss_piano.asm ├── ss_seq.asm ├── ss_table.asm └── ss_xy.asm ├── songload.asm ├── songsave.asm ├── tables ├── bpm.asm ├── cosine.asm ├── cutofflut.bin ├── drums.asm ├── harddist.asm ├── mmap.asm ├── notelut.asm ├── paramlist.asm ├── softdist.asm ├── text.asm └── wavetables.asm └── vbl ├── vbl_config.asm ├── vbl_credits.asm ├── vbl_live.asm ├── vbl_loadsave.asm ├── vbl_piano.asm ├── vbl_seq.asm ├── vbl_table.asm └── vbl_xy.asm /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/README.md -------------------------------------------------------------------------------- /bin/gb303.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/bin/gb303.gb -------------------------------------------------------------------------------- /cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/cart/README.md -------------------------------------------------------------------------------- /cart/gb303-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/cart/gb303-b.png -------------------------------------------------------------------------------- /img/2dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/img/2dpad.png -------------------------------------------------------------------------------- /img/assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/img/assign.png -------------------------------------------------------------------------------- /img/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/img/keyboard.png -------------------------------------------------------------------------------- /img/prot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/img/prot.jpg -------------------------------------------------------------------------------- /img/tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/img/tracker.png -------------------------------------------------------------------------------- /src/arp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/arp.asm -------------------------------------------------------------------------------- /src/common/gfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/common/gfx.asm -------------------------------------------------------------------------------- /src/common/gfxutil.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/common/gfxutil.asm -------------------------------------------------------------------------------- /src/common/loadtile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/common/loadtile.asm -------------------------------------------------------------------------------- /src/common/ram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/common/ram.asm -------------------------------------------------------------------------------- /src/common/system.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/common/system.asm -------------------------------------------------------------------------------- /src/confirm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/confirm.asm -------------------------------------------------------------------------------- /src/directives.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/directives.inc -------------------------------------------------------------------------------- /src/draw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/draw.asm -------------------------------------------------------------------------------- /src/gb303.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gb303.sym -------------------------------------------------------------------------------- /src/gfx/alphaftk.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/alphaftk.bin -------------------------------------------------------------------------------- /src/gfx/alphaftk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/alphaftk.bmp -------------------------------------------------------------------------------- /src/gfx/bignums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/bignums.bin -------------------------------------------------------------------------------- /src/gfx/bignums.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/bignums.bmp -------------------------------------------------------------------------------- /src/gfx/curnote.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/curnote.bin -------------------------------------------------------------------------------- /src/gfx/curnote.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/curnote.bmp -------------------------------------------------------------------------------- /src/gfx/curseq.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/curseq.bin -------------------------------------------------------------------------------- /src/gfx/curseq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/curseq.bmp -------------------------------------------------------------------------------- /src/gfx/curseq2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/curseq2.bin -------------------------------------------------------------------------------- /src/gfx/curseq2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/curseq2.bmp -------------------------------------------------------------------------------- /src/gfx/dists.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/dists.bin -------------------------------------------------------------------------------- /src/gfx/dists.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/dists.bmp -------------------------------------------------------------------------------- /src/gfx/error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/error.bin -------------------------------------------------------------------------------- /src/gfx/error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/error.bmp -------------------------------------------------------------------------------- /src/gfx/gridbg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/gridbg.bin -------------------------------------------------------------------------------- /src/gfx/gridbg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/gridbg.bmp -------------------------------------------------------------------------------- /src/gfx/gridcur.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/gridcur.bin -------------------------------------------------------------------------------- /src/gfx/gridcur.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/gridcur.bmp -------------------------------------------------------------------------------- /src/gfx/gridnote.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/gridnote.bin -------------------------------------------------------------------------------- /src/gfx/gridnote.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/gridnote.bmp -------------------------------------------------------------------------------- /src/gfx/keyb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/keyb.bin -------------------------------------------------------------------------------- /src/gfx/keyb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/keyb.bmp -------------------------------------------------------------------------------- /src/gfx/keyb.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/keyb.map -------------------------------------------------------------------------------- /src/gfx/lfoshapes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/lfoshapes.bin -------------------------------------------------------------------------------- /src/gfx/lfoshapes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/lfoshapes.bmp -------------------------------------------------------------------------------- /src/gfx/logo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/logo.bin -------------------------------------------------------------------------------- /src/gfx/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/logo.bmp -------------------------------------------------------------------------------- /src/gfx/note.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/note.bin -------------------------------------------------------------------------------- /src/gfx/note.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/note.bmp -------------------------------------------------------------------------------- /src/gfx/notecur.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/notecur.bin -------------------------------------------------------------------------------- /src/gfx/notedn.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/notedn.bin -------------------------------------------------------------------------------- /src/gfx/notedn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/notedn.bmp -------------------------------------------------------------------------------- /src/gfx/noteoff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/noteoff.bin -------------------------------------------------------------------------------- /src/gfx/noteoff.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/noteoff.bmp -------------------------------------------------------------------------------- /src/gfx/noteup.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/noteup.bin -------------------------------------------------------------------------------- /src/gfx/noteup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/noteup.bmp -------------------------------------------------------------------------------- /src/gfx/pot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/pot.bin -------------------------------------------------------------------------------- /src/gfx/pot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/pot.bmp -------------------------------------------------------------------------------- /src/gfx/potlinks.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/potlinks.bin -------------------------------------------------------------------------------- /src/gfx/potlinks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/potlinks.bmp -------------------------------------------------------------------------------- /src/gfx/screenmap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/screenmap.bin -------------------------------------------------------------------------------- /src/gfx/screenmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/screenmap.bmp -------------------------------------------------------------------------------- /src/gfx/wingrad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/wingrad.bin -------------------------------------------------------------------------------- /src/gfx/wingrad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gfx/wingrad.bmp -------------------------------------------------------------------------------- /src/gparams.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/gparams.asm -------------------------------------------------------------------------------- /src/hwio/eeprom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/hwio/eeprom.asm -------------------------------------------------------------------------------- /src/hwio/getee.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/hwio/getee.asm -------------------------------------------------------------------------------- /src/hwio/pots.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/hwio/pots.asm -------------------------------------------------------------------------------- /src/hwio/serial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/hwio/serial.asm -------------------------------------------------------------------------------- /src/hwio/spi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/hwio/spi.asm -------------------------------------------------------------------------------- /src/inittiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/inittiles.asm -------------------------------------------------------------------------------- /src/input/input_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_config.asm -------------------------------------------------------------------------------- /src/input/input_live.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_live.asm -------------------------------------------------------------------------------- /src/input/input_loadsave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_loadsave.asm -------------------------------------------------------------------------------- /src/input/input_piano.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_piano.asm -------------------------------------------------------------------------------- /src/input/input_seq.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_seq.asm -------------------------------------------------------------------------------- /src/input/input_table.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_table.asm -------------------------------------------------------------------------------- /src/input/input_xy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/input/input_xy.asm -------------------------------------------------------------------------------- /src/keyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/keyboard.asm -------------------------------------------------------------------------------- /src/lfo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/lfo.asm -------------------------------------------------------------------------------- /src/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | main.o 3 | -------------------------------------------------------------------------------- /src/load.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/load.asm -------------------------------------------------------------------------------- /src/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/main.s -------------------------------------------------------------------------------- /src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/make.bat -------------------------------------------------------------------------------- /src/params.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/params.asm -------------------------------------------------------------------------------- /src/play.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/play.asm -------------------------------------------------------------------------------- /src/playback.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/playback.asm -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r0.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r1.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r10.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r11.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r12.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r13.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r14.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r15.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r2.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r3.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r4.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r5.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r6.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r7.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r8.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a0_r9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a0_r9.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r0.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r1.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r10.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r11.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r12.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r13.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r14.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r15.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r2.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r3.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r4.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r5.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r6.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r7.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r8.bin -------------------------------------------------------------------------------- /src/s_sq/tb303_sq_a1_r9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sq/tb303_sq_a1_r9.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r0.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r1.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r10.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r11.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r12.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r13.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r14.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r15.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r2.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r3.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r4.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r5.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r6.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r7.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r8.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a0_r9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a0_r9.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r0.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r1.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r10.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r11.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r12.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r13.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r14.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r15.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r2.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r3.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r4.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r5.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r6.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r7.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r8.bin -------------------------------------------------------------------------------- /src/s_sw/tb303_sw_a1_r9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/s_sw/tb303_sw_a1_r9.bin -------------------------------------------------------------------------------- /src/save.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/save.asm -------------------------------------------------------------------------------- /src/screen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/screen.asm -------------------------------------------------------------------------------- /src/setup/ss_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_config.asm -------------------------------------------------------------------------------- /src/setup/ss_credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_credits.asm -------------------------------------------------------------------------------- /src/setup/ss_live.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_live.asm -------------------------------------------------------------------------------- /src/setup/ss_loadsave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_loadsave.asm -------------------------------------------------------------------------------- /src/setup/ss_piano.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_piano.asm -------------------------------------------------------------------------------- /src/setup/ss_seq.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_seq.asm -------------------------------------------------------------------------------- /src/setup/ss_table.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_table.asm -------------------------------------------------------------------------------- /src/setup/ss_xy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/setup/ss_xy.asm -------------------------------------------------------------------------------- /src/songload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/songload.asm -------------------------------------------------------------------------------- /src/songsave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/songsave.asm -------------------------------------------------------------------------------- /src/tables/bpm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/bpm.asm -------------------------------------------------------------------------------- /src/tables/cosine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/cosine.asm -------------------------------------------------------------------------------- /src/tables/cutofflut.bin: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ -------------------------------------------------------------------------------- /src/tables/drums.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/drums.asm -------------------------------------------------------------------------------- /src/tables/harddist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/harddist.asm -------------------------------------------------------------------------------- /src/tables/mmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/mmap.asm -------------------------------------------------------------------------------- /src/tables/notelut.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/notelut.asm -------------------------------------------------------------------------------- /src/tables/paramlist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/paramlist.asm -------------------------------------------------------------------------------- /src/tables/softdist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/softdist.asm -------------------------------------------------------------------------------- /src/tables/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/text.asm -------------------------------------------------------------------------------- /src/tables/wavetables.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/tables/wavetables.asm -------------------------------------------------------------------------------- /src/vbl/vbl_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_config.asm -------------------------------------------------------------------------------- /src/vbl/vbl_credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_credits.asm -------------------------------------------------------------------------------- /src/vbl/vbl_live.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_live.asm -------------------------------------------------------------------------------- /src/vbl/vbl_loadsave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_loadsave.asm -------------------------------------------------------------------------------- /src/vbl/vbl_piano.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_piano.asm -------------------------------------------------------------------------------- /src/vbl/vbl_seq.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_seq.asm -------------------------------------------------------------------------------- /src/vbl/vbl_table.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_table.asm -------------------------------------------------------------------------------- /src/vbl/vbl_xy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/GB303/HEAD/src/vbl/vbl_xy.asm --------------------------------------------------------------------------------