Compare commits
No commits in common. "master" and "a8319e9fb76b5eee4ec9497b9bec70e6cd99e56f" have entirely different histories.
master
...
a8319e9fb7
BIN
dist/snake6502.bin
vendored
BIN
dist/snake6502.bin
vendored
Binary file not shown.
BIN
dist/snake6502.d64
vendored
BIN
dist/snake6502.d64
vendored
Binary file not shown.
@ -33,7 +33,7 @@ introreset SUBROUTINE
|
|||||||
bne .colorLoop
|
bne .colorLoop
|
||||||
|
|
||||||
; first raster interrupt line, for moustaches
|
; first raster interrupt line, for moustaches
|
||||||
lda #68+18
|
lda #68+19
|
||||||
sta moustacheLine
|
sta moustacheLine
|
||||||
|
|
||||||
rts
|
rts
|
||||||
@ -411,10 +411,6 @@ statusMenuReset SUBROUTINE
|
|||||||
MEMSET #$d800, #$02, #280 ; color
|
MEMSET #$d800, #$02, #280 ; color
|
||||||
MEMCPY #$400, #SnakeText, #280 ; text
|
MEMCPY #$400, #SnakeText, #280 ; text
|
||||||
|
|
||||||
; Print PETSCII GLG Programs
|
|
||||||
MEMSET #($6a8 + $d800 - $400), #$02, #200 ; color
|
|
||||||
MEMCPY #$6a8, #GLGProgramsText, #200 ; text
|
|
||||||
|
|
||||||
; Print website
|
; Print website
|
||||||
lda #<intro2string ; lsb of string address
|
lda #<intro2string ; lsb of string address
|
||||||
sta srcStringPointer ; put into lsb of source pointer
|
sta srcStringPointer ; put into lsb of source pointer
|
||||||
|
@ -90,13 +90,6 @@ menu SUBROUTINE
|
|||||||
|
|
||||||
; Intro is finished, now it's time to start the proper game
|
; Intro is finished, now it's time to start the proper game
|
||||||
.intro0end:
|
.intro0end:
|
||||||
; Are you sure? Maybe the demo-intro is not finished, yet
|
|
||||||
; We do not want to actually start unless the demo is finished,
|
|
||||||
; otherwise vertical raster line offset may be != 0
|
|
||||||
lda status
|
|
||||||
cmp #ST_MENU
|
|
||||||
bne .menu
|
|
||||||
|
|
||||||
; Set current level pointer to list start
|
; Set current level pointer to list start
|
||||||
lda #<levelsList
|
lda #<levelsList
|
||||||
sta levelPointer
|
sta levelPointer
|
||||||
|
Loading…
Reference in New Issue
Block a user