Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
Folders
Browse files Browse the repository at this point in the history
  • Loading branch information
furrtek committed Oct 24, 2016
1 parent 1effaae commit 995ffca
Show file tree
Hide file tree
Showing 48 changed files with 532 additions and 47 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion gfxutil.asm → common/gfxutil.asm
Original file line number Diff line number Diff line change
Expand Up @@ -398,4 +398,4 @@ RAMtoOAM:
jr nz,-
ret

.INCLUDE "loadtile.asm"
.INCLUDE "common\loadtile.asm"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added main.gb
Binary file not shown.
86 changes: 43 additions & 43 deletions main.s
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

.BANK 0 SLOT 0

.INCLUDE "ram.asm"
.INCLUDE "common/ram.asm"

.ORG $0000 ;A=(HL+A) LUT
add l
Expand Down Expand Up @@ -451,68 +451,68 @@ defaultseq:
.db $0C,0,0,0
.db $0C,0,0,0
.db $0C,0,0,0

cutofflut:
.INCBIN "cutofflut.bin"
.INCBIN "tables\cutofflut.bin"

.INCLUDE "inittiles.asm"
.INCLUDE "serial.asm"
.INCLUDE "system.asm"
.INCLUDE "gfxutil.asm"
.INCLUDE "hwio\serial.asm"
.INCLUDE "common\system.asm"
.INCLUDE "common\gfxutil.asm"
.INCLUDE "playback.asm"
.INCLUDE "play.asm"
.INCLUDE "draw.asm"
.INCLUDE "bpm.asm"
.INCLUDE "pots.asm"
.INCLUDE "tables\bpm.asm"
.INCLUDE "hwio\pots.asm"
.INCLUDE "screen.asm"
.INCLUDE "spi.asm"
.INCLUDE "eeprom.asm"
.INCLUDE "ss_piano.asm"
.INCLUDE "ss_config.asm"
.INCLUDE "ss_loadsave.asm"
.INCLUDE "ss_credits.asm"
.INCLUDE "ss_table.asm"
.INCLUDE "ss_live.asm"
.INCLUDE "ss_xy.asm"
.INCLUDE "ss_seq.asm"
.INCLUDE "vbl_credits.asm"
.INCLUDE "vbl_loadsave.asm"
.INCLUDE "vbl_piano.asm"
.INCLUDE "vbl_config.asm"
.INCLUDE "vbl_seq.asm"
.INCLUDE "vbl_xy.asm"
.INCLUDE "vbl_table.asm"
.INCLUDE "vbl_live.asm"
.INCLUDE "input_table.asm"
.INCLUDE "input_piano.asm"
.INCLUDE "input_config.asm"
.INCLUDE "input_loadsave.asm"
.INCLUDE "input_live.asm"
.INCLUDE "input_xy.asm"
.INCLUDE "input_seq.asm"
.INCLUDE "hwio\spi.asm"
.INCLUDE "hwio\eeprom.asm"
.INCLUDE "setup\ss_piano.asm"
.INCLUDE "setup\ss_config.asm"
.INCLUDE "setup\ss_loadsave.asm"
.INCLUDE "setup\ss_credits.asm"
.INCLUDE "setup\ss_table.asm"
.INCLUDE "setup\ss_live.asm"
.INCLUDE "setup\ss_xy.asm"
.INCLUDE "setup\ss_seq.asm"
.INCLUDE "vbl\vbl_credits.asm"
.INCLUDE "vbl\vbl_loadsave.asm"
.INCLUDE "vbl\vbl_piano.asm"
.INCLUDE "vbl\vbl_config.asm"
.INCLUDE "vbl\vbl_seq.asm"
.INCLUDE "vbl\vbl_xy.asm"
.INCLUDE "vbl\vbl_table.asm"
.INCLUDE "vbl\vbl_live.asm"
.INCLUDE "input\input_table.asm"
.INCLUDE "input\input_piano.asm"
.INCLUDE "input\input_config.asm"
.INCLUDE "input\input_loadsave.asm"
.INCLUDE "input\input_live.asm"
.INCLUDE "input\input_xy.asm"
.INCLUDE "input\input_seq.asm"
.INCLUDE "keyboard.asm"
.INCLUDE "confirm.asm"
.INCLUDE "arp.asm"
.INCLUDE "paramlist.asm"
.INCLUDE "tables\paramlist.asm"
.INCLUDE "params.asm"
.INCLUDE "save.asm"
.INCLUDE "load.asm"
.INCLUDE "songsave.asm"
.INCLUDE "songload.asm"
.INCLUDE "gparams.asm"
.INCLUDE "getee.asm"
.INCLUDE "hwio\getee.asm"
.INCLUDE "lfo.asm"
.INCLUDE "drums.asm"
.INCLUDE "cosine.asm" ;Used for LFO and credits copperbars
.INCLUDE "text.asm"
.INCLUDE "notelut.asm"
.INCLUDE "tables\drums.asm"
.INCLUDE "tables\cosine.asm" ;Used for LFO and credits copperbars
.INCLUDE "tables\text.asm"
.INCLUDE "tables\notelut.asm"

map_keyb:
.INCBIN "gfx\keyb.map"

.INCLUDE "softdist.asm"
.INCLUDE "harddist.asm"
.INCLUDE "tables\softdist.asm"
.INCLUDE "tables\harddist.asm"

;Bankswitched data:
.INCLUDE "wavetables.asm"
.INCLUDE "mmap.asm"
.INCLUDE "tables\wavetables.asm"
.INCLUDE "tables\mmap.asm"
Loading

0 comments on commit 995ffca

Please sign in to comment.