mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-16 23:20:43 +00:00
b1238af49d
this will probably upset people
29 lines
302 B
ArmAsm
29 lines
302 B
ArmAsm
|
|
game_over:
|
|
lda #$a0
|
|
jsr clear_top_a
|
|
|
|
bit SET_TEXT
|
|
|
|
lda #10
|
|
sta CV
|
|
lda #15
|
|
sta CH
|
|
|
|
lda #>(game_over_man)
|
|
sta OUTH
|
|
lda #<(game_over_man)
|
|
sta OUTL
|
|
|
|
jsr move_and_print
|
|
|
|
jsr page_flip
|
|
|
|
jsr wait_until_keypressed
|
|
|
|
rts
|
|
|
|
game_over_man:
|
|
.asciiz "GAME OVER"
|
|
|