GSCats/gscats.s

52 lines
745 B
ArmAsm
Raw Normal View History

2017-07-28 22:11:25 +00:00
;
; gscats
2017-07-28 22:11:25 +00:00
;
; Created by Quinn Dunki on 7/9/17
;
.include "macros.s"
.include "equates.s"
.include "loader.s"
2017-07-29 21:47:17 +00:00
mainBank2:
SYNCDBR
BITS8
2017-07-28 22:11:25 +00:00
lda #$f0
sta TEXTCOLOR
2017-07-29 21:47:17 +00:00
BITS16
2017-07-28 22:11:25 +00:00
; Set up SCBs
2017-07-28 22:11:25 +00:00
jsr initSCBs
SHRVIDEO
2017-07-28 22:11:25 +00:00
2017-08-16 02:04:22 +00:00
jmp beginGameplay
2017-07-28 22:11:25 +00:00
2017-08-16 02:04:22 +00:00
quitGame:
2017-07-30 22:43:55 +00:00
CLASSICVIDEO
2017-07-29 21:47:17 +00:00
jml (proDOSLongJump)
2017-07-28 22:11:25 +00:00
.include "graphics.s"
2017-08-13 21:54:18 +00:00
.include "font.s"
.include "terrain.s"
2017-08-13 22:36:12 +00:00
.include "gameobject.s"
2017-08-15 19:40:14 +00:00
.include "player.s"
.include "utility.s"
.include "tables.s"
2017-08-16 02:04:22 +00:00
.include "gamemanager.s"
2017-08-16 02:20:47 +00:00
.include "input.s"
.include "projectile.s"
2017-08-16 02:20:47 +00:00
2017-07-29 21:47:17 +00:00
endMainBank2:
2017-07-28 22:11:25 +00:00
; Suppress some linker warnings - Must be the last thing in the file
; This is because Quinn doesn't really know how to use ca65 properly
.SEGMENT "ZPSAVE"
.SEGMENT "EXEHDR"
.SEGMENT "STARTUP"
.SEGMENT "INIT"
.SEGMENT "LOWCODE"