├── .gitattributes ├── README.md ├── gfx ├── bear2.png ├── bird.png ├── crab.png ├── crawl.bin ├── credits.map ├── credits.scr ├── darkbear.png ├── degree_icon.png ├── desktop.ini ├── digits_shadow.png ├── door.bin ├── fish.png ├── fish_icon.png ├── gogr.png ├── hero.png ├── loader.kla ├── logo_bars.bin ├── logo_top.png ├── note.bin ├── platform0.gpx ├── platform0.imap ├── platform0.iscr ├── platform0.png ├── platform1.gpx ├── platform1.imap ├── platform1.iscr ├── platform1.png ├── shell.png ├── shore.kla ├── shoredark2.kla ├── stars.gpx ├── stars.imap └── stars.iscr ├── release ├── MANUAL.txt ├── fb.gif └── frostbite.prg ├── sfx ├── bear.ins ├── bear.snd ├── bonus.ins ├── bonus.snd ├── eating.ins ├── eating.snd ├── igloo.ins ├── igloo.snd ├── jump.ins ├── jump.snd ├── landing.ins ├── landing.snd ├── splash.ins └── splash.snd ├── sid ├── Frostbite_C64.sid └── Frostbite_C64.sng └── src ├── controls.asm ├── enemies.asm ├── environment.asm ├── game.asm ├── hero.asm ├── hud.asm ├── misc.asm ├── notes.asm ├── sfx.asm └── splash.asm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/README.md -------------------------------------------------------------------------------- /gfx/bear2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/bear2.png -------------------------------------------------------------------------------- /gfx/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/bird.png -------------------------------------------------------------------------------- /gfx/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/crab.png -------------------------------------------------------------------------------- /gfx/crawl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/crawl.bin -------------------------------------------------------------------------------- /gfx/credits.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/credits.map -------------------------------------------------------------------------------- /gfx/credits.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/credits.scr -------------------------------------------------------------------------------- /gfx/darkbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/darkbear.png -------------------------------------------------------------------------------- /gfx/degree_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/degree_icon.png -------------------------------------------------------------------------------- /gfx/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/desktop.ini -------------------------------------------------------------------------------- /gfx/digits_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/digits_shadow.png -------------------------------------------------------------------------------- /gfx/door.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/door.bin -------------------------------------------------------------------------------- /gfx/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/fish.png -------------------------------------------------------------------------------- /gfx/fish_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/fish_icon.png -------------------------------------------------------------------------------- /gfx/gogr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/gogr.png -------------------------------------------------------------------------------- /gfx/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/hero.png -------------------------------------------------------------------------------- /gfx/loader.kla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/loader.kla -------------------------------------------------------------------------------- /gfx/logo_bars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/logo_bars.bin -------------------------------------------------------------------------------- /gfx/logo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/logo_top.png -------------------------------------------------------------------------------- /gfx/note.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/note.bin -------------------------------------------------------------------------------- /gfx/platform0.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform0.gpx -------------------------------------------------------------------------------- /gfx/platform0.imap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform0.imap -------------------------------------------------------------------------------- /gfx/platform0.iscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform0.iscr -------------------------------------------------------------------------------- /gfx/platform0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform0.png -------------------------------------------------------------------------------- /gfx/platform1.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform1.gpx -------------------------------------------------------------------------------- /gfx/platform1.imap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform1.imap -------------------------------------------------------------------------------- /gfx/platform1.iscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform1.iscr -------------------------------------------------------------------------------- /gfx/platform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/platform1.png -------------------------------------------------------------------------------- /gfx/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/shell.png -------------------------------------------------------------------------------- /gfx/shore.kla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/shore.kla -------------------------------------------------------------------------------- /gfx/shoredark2.kla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/shoredark2.kla -------------------------------------------------------------------------------- /gfx/stars.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/stars.gpx -------------------------------------------------------------------------------- /gfx/stars.imap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/stars.imap -------------------------------------------------------------------------------- /gfx/stars.iscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/gfx/stars.iscr -------------------------------------------------------------------------------- /release/MANUAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/release/MANUAL.txt -------------------------------------------------------------------------------- /release/fb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/release/fb.gif -------------------------------------------------------------------------------- /release/frostbite.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/release/frostbite.prg -------------------------------------------------------------------------------- /sfx/bear.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/bear.ins -------------------------------------------------------------------------------- /sfx/bear.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/bear.snd -------------------------------------------------------------------------------- /sfx/bonus.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/bonus.ins -------------------------------------------------------------------------------- /sfx/bonus.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/bonus.snd -------------------------------------------------------------------------------- /sfx/eating.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/eating.ins -------------------------------------------------------------------------------- /sfx/eating.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/eating.snd -------------------------------------------------------------------------------- /sfx/igloo.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/igloo.ins -------------------------------------------------------------------------------- /sfx/igloo.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/igloo.snd -------------------------------------------------------------------------------- /sfx/jump.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/jump.ins -------------------------------------------------------------------------------- /sfx/jump.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/jump.snd -------------------------------------------------------------------------------- /sfx/landing.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/landing.ins -------------------------------------------------------------------------------- /sfx/landing.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/landing.snd -------------------------------------------------------------------------------- /sfx/splash.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/splash.ins -------------------------------------------------------------------------------- /sfx/splash.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sfx/splash.snd -------------------------------------------------------------------------------- /sid/Frostbite_C64.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sid/Frostbite_C64.sid -------------------------------------------------------------------------------- /sid/Frostbite_C64.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/sid/Frostbite_C64.sng -------------------------------------------------------------------------------- /src/controls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/controls.asm -------------------------------------------------------------------------------- /src/enemies.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/enemies.asm -------------------------------------------------------------------------------- /src/environment.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/environment.asm -------------------------------------------------------------------------------- /src/game.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/game.asm -------------------------------------------------------------------------------- /src/hero.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/hero.asm -------------------------------------------------------------------------------- /src/hud.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/hud.asm -------------------------------------------------------------------------------- /src/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/misc.asm -------------------------------------------------------------------------------- /src/notes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/notes.asm -------------------------------------------------------------------------------- /src/sfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/sfx.asm -------------------------------------------------------------------------------- /src/splash.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonysavon/Frostbite-C64/HEAD/src/splash.asm --------------------------------------------------------------------------------