├── .gitignore ├── CHANGES.txt ├── LICENSE ├── README.md ├── asm6 ├── README.md ├── asm6shell.asm ├── asm6shelltiles.png ├── ca65toasm6.py ├── metasprite.asm ├── mk.sh ├── pentlyconfig.inc ├── pentlyzp.inc └── ppuclear.asm ├── audio ├── Foothills-sfx.pently ├── Foothills.ftm ├── Pino_drumkit.inc ├── musicseq.pently └── pino-a53.pently ├── docs ├── asm6.md ├── bytecode.md ├── channel_fields.txt ├── famitracker.md ├── pentlyas.md ├── pseudocode.txt ├── reentrancy.md ├── shell.md └── usage.md ├── makefile ├── nrom128.cfg ├── nsf.cfg ├── nsfe.cfg ├── obj └── nes │ └── index.txt ├── sfxed ├── README.md ├── docs │ └── noisefreqs.py ├── makefile ├── nrom128chrram.cfg ├── obj │ └── nes │ │ └── index.txt ├── src │ ├── bcd.s │ ├── bg.s │ ├── editactions.s │ ├── export.s │ ├── global.inc │ ├── main.s │ ├── mbyt.inc │ ├── mouse.s │ ├── mouseactions.s │ ├── nes.inc │ ├── pads.s │ ├── paldetect.s │ ├── pentlyconfig.inc │ ├── ppuclear.s │ ├── random.s │ └── vwf_draw.s ├── tilesets │ ├── coltiles.png │ ├── sprites.png │ └── vwf7.png └── tools │ └── vwfbuild.py ├── src ├── bpmmath.s ├── main.s ├── math.s ├── nes.inc ├── nsfechunks.inc ├── nsfeshell.s ├── nsfshell.s ├── pads.s ├── paldetect.s ├── pently.h ├── pently.inc ├── pentlyconfig.inc ├── pentlymusic.s ├── pentlyseq.inc ├── pentlysound.s ├── ppuclear.s ├── profiler.s ├── shell.inc ├── tracknames.s └── vis.s ├── tilesets ├── bggfx.png └── spritegfx.png ├── tools ├── makewinbuild.py ├── noise_freqs.py ├── pentlyas.py ├── pentlybss.py └── pilbmp2nes.py └── tracknames.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/README.md -------------------------------------------------------------------------------- /asm6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/README.md -------------------------------------------------------------------------------- /asm6/asm6shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/asm6shell.asm -------------------------------------------------------------------------------- /asm6/asm6shelltiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/asm6shelltiles.png -------------------------------------------------------------------------------- /asm6/ca65toasm6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/ca65toasm6.py -------------------------------------------------------------------------------- /asm6/metasprite.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/metasprite.asm -------------------------------------------------------------------------------- /asm6/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/mk.sh -------------------------------------------------------------------------------- /asm6/pentlyconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/pentlyconfig.inc -------------------------------------------------------------------------------- /asm6/pentlyzp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/pentlyzp.inc -------------------------------------------------------------------------------- /asm6/ppuclear.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/asm6/ppuclear.asm -------------------------------------------------------------------------------- /audio/Foothills-sfx.pently: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/audio/Foothills-sfx.pently -------------------------------------------------------------------------------- /audio/Foothills.ftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/audio/Foothills.ftm -------------------------------------------------------------------------------- /audio/Pino_drumkit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/audio/Pino_drumkit.inc -------------------------------------------------------------------------------- /audio/musicseq.pently: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/audio/musicseq.pently -------------------------------------------------------------------------------- /audio/pino-a53.pently: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/audio/pino-a53.pently -------------------------------------------------------------------------------- /docs/asm6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/asm6.md -------------------------------------------------------------------------------- /docs/bytecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/bytecode.md -------------------------------------------------------------------------------- /docs/channel_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/channel_fields.txt -------------------------------------------------------------------------------- /docs/famitracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/famitracker.md -------------------------------------------------------------------------------- /docs/pentlyas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/pentlyas.md -------------------------------------------------------------------------------- /docs/pseudocode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/pseudocode.txt -------------------------------------------------------------------------------- /docs/reentrancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/reentrancy.md -------------------------------------------------------------------------------- /docs/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/shell.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/docs/usage.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/makefile -------------------------------------------------------------------------------- /nrom128.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/nrom128.cfg -------------------------------------------------------------------------------- /nsf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/nsf.cfg -------------------------------------------------------------------------------- /nsfe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/nsfe.cfg -------------------------------------------------------------------------------- /obj/nes/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/obj/nes/index.txt -------------------------------------------------------------------------------- /sfxed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/README.md -------------------------------------------------------------------------------- /sfxed/docs/noisefreqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/docs/noisefreqs.py -------------------------------------------------------------------------------- /sfxed/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/makefile -------------------------------------------------------------------------------- /sfxed/nrom128chrram.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/nrom128chrram.cfg -------------------------------------------------------------------------------- /sfxed/obj/nes/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/obj/nes/index.txt -------------------------------------------------------------------------------- /sfxed/src/bcd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/bcd.s -------------------------------------------------------------------------------- /sfxed/src/bg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/bg.s -------------------------------------------------------------------------------- /sfxed/src/editactions.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/editactions.s -------------------------------------------------------------------------------- /sfxed/src/export.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/export.s -------------------------------------------------------------------------------- /sfxed/src/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/global.inc -------------------------------------------------------------------------------- /sfxed/src/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/main.s -------------------------------------------------------------------------------- /sfxed/src/mbyt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/mbyt.inc -------------------------------------------------------------------------------- /sfxed/src/mouse.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/mouse.s -------------------------------------------------------------------------------- /sfxed/src/mouseactions.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/mouseactions.s -------------------------------------------------------------------------------- /sfxed/src/nes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/nes.inc -------------------------------------------------------------------------------- /sfxed/src/pads.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/pads.s -------------------------------------------------------------------------------- /sfxed/src/paldetect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/paldetect.s -------------------------------------------------------------------------------- /sfxed/src/pentlyconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/pentlyconfig.inc -------------------------------------------------------------------------------- /sfxed/src/ppuclear.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/ppuclear.s -------------------------------------------------------------------------------- /sfxed/src/random.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/random.s -------------------------------------------------------------------------------- /sfxed/src/vwf_draw.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/src/vwf_draw.s -------------------------------------------------------------------------------- /sfxed/tilesets/coltiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/tilesets/coltiles.png -------------------------------------------------------------------------------- /sfxed/tilesets/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/tilesets/sprites.png -------------------------------------------------------------------------------- /sfxed/tilesets/vwf7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/tilesets/vwf7.png -------------------------------------------------------------------------------- /sfxed/tools/vwfbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/sfxed/tools/vwfbuild.py -------------------------------------------------------------------------------- /src/bpmmath.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/bpmmath.s -------------------------------------------------------------------------------- /src/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/main.s -------------------------------------------------------------------------------- /src/math.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/math.s -------------------------------------------------------------------------------- /src/nes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/nes.inc -------------------------------------------------------------------------------- /src/nsfechunks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/nsfechunks.inc -------------------------------------------------------------------------------- /src/nsfeshell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/nsfeshell.s -------------------------------------------------------------------------------- /src/nsfshell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/nsfshell.s -------------------------------------------------------------------------------- /src/pads.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pads.s -------------------------------------------------------------------------------- /src/paldetect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/paldetect.s -------------------------------------------------------------------------------- /src/pently.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pently.h -------------------------------------------------------------------------------- /src/pently.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pently.inc -------------------------------------------------------------------------------- /src/pentlyconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pentlyconfig.inc -------------------------------------------------------------------------------- /src/pentlymusic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pentlymusic.s -------------------------------------------------------------------------------- /src/pentlyseq.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pentlyseq.inc -------------------------------------------------------------------------------- /src/pentlysound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/pentlysound.s -------------------------------------------------------------------------------- /src/ppuclear.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/ppuclear.s -------------------------------------------------------------------------------- /src/profiler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/profiler.s -------------------------------------------------------------------------------- /src/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/shell.inc -------------------------------------------------------------------------------- /src/tracknames.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/tracknames.s -------------------------------------------------------------------------------- /src/vis.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/src/vis.s -------------------------------------------------------------------------------- /tilesets/bggfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tilesets/bggfx.png -------------------------------------------------------------------------------- /tilesets/spritegfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tilesets/spritegfx.png -------------------------------------------------------------------------------- /tools/makewinbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tools/makewinbuild.py -------------------------------------------------------------------------------- /tools/noise_freqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tools/noise_freqs.py -------------------------------------------------------------------------------- /tools/pentlyas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tools/pentlyas.py -------------------------------------------------------------------------------- /tools/pentlybss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tools/pentlybss.py -------------------------------------------------------------------------------- /tools/pilbmp2nes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tools/pilbmp2nes.py -------------------------------------------------------------------------------- /tracknames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinobatch/pently/HEAD/tracknames.txt --------------------------------------------------------------------------------