2019-05-07 00:16:45 +00:00
|
|
|
; VMW Chiptune Player
|
|
|
|
|
|
|
|
.include "zp.inc"
|
|
|
|
|
2019-05-14 15:52:50 +00:00
|
|
|
PT3_LOC = $4000
|
2019-05-07 00:16:45 +00:00
|
|
|
|
2019-05-15 18:13:54 +00:00
|
|
|
|
2019-05-15 21:03:27 +00:00
|
|
|
NUM_FILES EQU 4
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
;=============================
|
|
|
|
; Setup
|
|
|
|
;=============================
|
2019-05-07 04:28:42 +00:00
|
|
|
pt3_setup:
|
|
|
|
jsr HOME
|
|
|
|
jsr TEXT
|
2019-05-07 00:16:45 +00:00
|
|
|
|
2019-05-14 15:52:50 +00:00
|
|
|
bit HIRES
|
|
|
|
bit SET_GR
|
|
|
|
bit TEXTGR ; split text/graphics
|
|
|
|
|
|
|
|
; lda #$20
|
|
|
|
; sta HGR_PAGE
|
|
|
|
; jsr HCLR
|
|
|
|
|
2019-05-07 00:16:45 +00:00
|
|
|
; Init disk code
|
|
|
|
|
|
|
|
jsr rts_init
|
|
|
|
|
|
|
|
; init variables
|
|
|
|
|
|
|
|
lda #0
|
2019-05-07 15:33:07 +00:00
|
|
|
sta DRAW_PAGE
|
|
|
|
sta DONE_PLAYING
|
2019-05-07 00:16:45 +00:00
|
|
|
sta WHICH_FILE
|
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
; lda #$ff
|
|
|
|
; sta RASTERBARS_ON
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
; print detection message
|
|
|
|
|
|
|
|
; lda #<mocking_message ; load loading message
|
|
|
|
; sta OUTL
|
|
|
|
; lda #>mocking_message
|
|
|
|
; sta OUTH
|
|
|
|
; jsr move_and_print ; print it
|
|
|
|
|
|
|
|
jsr mockingboard_detect_slot4 ; call detection routine
|
|
|
|
cpx #$1
|
|
|
|
beq mockingboard_found
|
|
|
|
|
|
|
|
lda #<not_message ; if not found, print that
|
|
|
|
sta OUTL
|
|
|
|
lda #>not_message
|
|
|
|
sta OUTH
|
|
|
|
inc CV
|
|
|
|
jsr move_and_print
|
|
|
|
|
|
|
|
; jmp forever_loop ; and wait forever
|
|
|
|
|
|
|
|
mockingboard_found:
|
|
|
|
; lda #<found_message ; print found message
|
|
|
|
; sta OUTL
|
|
|
|
; lda #>found_message
|
|
|
|
; sta OUTH
|
|
|
|
; inc CV
|
|
|
|
; jsr move_and_print
|
|
|
|
|
|
|
|
;============================
|
|
|
|
; Init the Mockingboard
|
|
|
|
;============================
|
|
|
|
|
|
|
|
jsr mockingboard_init
|
|
|
|
jsr reset_ay_both
|
|
|
|
jsr clear_ay_both
|
|
|
|
|
|
|
|
;=========================
|
|
|
|
; Setup Interrupt Handler
|
|
|
|
;=========================
|
|
|
|
; Vector address goes to 0x3fe/0x3ff
|
|
|
|
; FIXME: should chain any existing handler
|
|
|
|
|
2019-05-07 15:33:07 +00:00
|
|
|
lda #<interrupt_handler
|
|
|
|
sta $03fe
|
|
|
|
lda #>interrupt_handler
|
|
|
|
sta $03ff
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
;============================
|
|
|
|
; Enable 50Hz clock on 6522
|
|
|
|
;============================
|
|
|
|
|
|
|
|
sei ; disable interrupts just in case
|
|
|
|
|
|
|
|
lda #$40 ; Continuous interrupts, don't touch PB7
|
|
|
|
sta $C40B ; ACR register
|
|
|
|
lda #$7F ; clear all interrupt flags
|
|
|
|
sta $C40E ; IER register (interrupt enable)
|
|
|
|
|
|
|
|
lda #$C0
|
|
|
|
sta $C40D ; IFR: 1100, enable interrupt on timer one oflow
|
|
|
|
sta $C40E ; IER: 1100, enable timer one interrupt
|
|
|
|
|
|
|
|
lda #$E7
|
|
|
|
sta $C404 ; write into low-order latch
|
|
|
|
lda #$4f
|
|
|
|
sta $C405 ; write into high-order latch,
|
|
|
|
; load both values into counter
|
|
|
|
; clear interrupt and start counting
|
|
|
|
|
|
|
|
; 4fe7 / 1e6 = .020s, 50Hz
|
|
|
|
|
|
|
|
|
|
|
|
;============================
|
|
|
|
; Draw title screen
|
|
|
|
;============================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;==================
|
|
|
|
; load first song
|
|
|
|
;==================
|
|
|
|
|
|
|
|
jsr new_song
|
|
|
|
|
|
|
|
;============================
|
|
|
|
; Init Background
|
|
|
|
;============================
|
2019-05-07 04:28:42 +00:00
|
|
|
; jsr set_gr_page0
|
2019-05-07 00:16:45 +00:00
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
; lda #0
|
|
|
|
; sta DRAW_PAGE
|
|
|
|
; sta SCREEN_Y
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
;============================
|
|
|
|
; Enable 6502 interrupts
|
|
|
|
;============================
|
|
|
|
|
2019-05-07 15:33:07 +00:00
|
|
|
cli ; clear interrupt mask
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
;============================
|
|
|
|
; Loop forever
|
|
|
|
;============================
|
|
|
|
main_loop:
|
|
|
|
|
|
|
|
|
|
|
|
check_done:
|
|
|
|
lda #$ff
|
|
|
|
bit DONE_PLAYING
|
|
|
|
beq main_loop ; if was all zeros, loop
|
|
|
|
bmi main_loop ; if high bit set, paused
|
|
|
|
bvs minus_song ; if bit 6 set, then left pressed
|
|
|
|
|
|
|
|
; else, either song finished or
|
|
|
|
; right pressed
|
|
|
|
|
|
|
|
plus_song:
|
|
|
|
sei ; disable interrupts
|
|
|
|
jsr increment_file
|
|
|
|
jmp done_play
|
|
|
|
|
|
|
|
minus_song:
|
|
|
|
sei ; disable interrupts
|
|
|
|
jsr decrement_file
|
|
|
|
|
|
|
|
done_play:
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta DONE_PLAYING
|
|
|
|
|
2019-05-15 18:13:54 +00:00
|
|
|
; lda #0
|
|
|
|
; sta CH
|
2019-05-07 00:16:45 +00:00
|
|
|
|
2019-05-15 18:13:54 +00:00
|
|
|
; jsr clear_bottoms
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
jsr new_song
|
|
|
|
|
|
|
|
cli ; re-enable interrupts
|
|
|
|
|
|
|
|
jmp main_loop
|
|
|
|
|
|
|
|
forever_loop:
|
|
|
|
jmp forever_loop
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;=================
|
|
|
|
; load a new song
|
|
|
|
;=================
|
|
|
|
|
|
|
|
new_song:
|
|
|
|
|
|
|
|
;=========================
|
|
|
|
; Init Variables
|
|
|
|
;=========================
|
|
|
|
|
2019-05-14 18:25:13 +00:00
|
|
|
lda #$0
|
|
|
|
sta FRAME_COUNT
|
2019-05-07 04:28:42 +00:00
|
|
|
; sta A_VOLUME
|
|
|
|
; sta B_VOLUME
|
|
|
|
; sta C_VOLUME
|
|
|
|
; sta COPY_OFFSET
|
|
|
|
; sta DECOMPRESS_TIME
|
|
|
|
; sta COPY_TIME
|
|
|
|
; sta MB_CHUNK_OFFSET
|
|
|
|
; lda #$20
|
|
|
|
; sta DECODER_STATE
|
|
|
|
; lda #3
|
|
|
|
; sta CHUNKSIZE
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
;===========================
|
|
|
|
; Print loading message
|
|
|
|
;===========================
|
|
|
|
|
|
|
|
jsr clear_bottoms ; clear bottom of page 0/1
|
|
|
|
|
|
|
|
lda #0 ; print LOADING message
|
|
|
|
sta CH
|
|
|
|
lda #21
|
|
|
|
sta CV
|
|
|
|
|
|
|
|
lda #<loading_message
|
|
|
|
sta OUTL
|
|
|
|
lda #>loading_message
|
|
|
|
sta OUTH
|
|
|
|
jsr print_both_pages
|
|
|
|
|
|
|
|
|
|
|
|
;===========================
|
2019-05-07 04:28:42 +00:00
|
|
|
; Load in PT3 file
|
2019-05-07 00:16:45 +00:00
|
|
|
;===========================
|
|
|
|
|
|
|
|
jsr get_filename
|
|
|
|
|
|
|
|
lda #8 ; print filename to screen
|
|
|
|
sta CH
|
|
|
|
lda #21
|
|
|
|
sta CV
|
|
|
|
|
|
|
|
lda INL
|
|
|
|
sta OUTL
|
|
|
|
lda INH
|
|
|
|
sta OUTH
|
|
|
|
jsr print_both_pages
|
|
|
|
|
|
|
|
|
|
|
|
; needs to be space-padded $A0 30-byte filename
|
|
|
|
|
|
|
|
lda #<readfile_filename
|
|
|
|
sta namlo
|
|
|
|
lda #>readfile_filename
|
|
|
|
sta namhi
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
ldx #30 ; 30 chars
|
|
|
|
name_loop:
|
|
|
|
lda (INL),Y
|
|
|
|
beq space_loop
|
|
|
|
ora #$80
|
|
|
|
sta (namlo),Y
|
|
|
|
iny
|
|
|
|
dex
|
|
|
|
bne name_loop
|
|
|
|
beq done_name_loop
|
|
|
|
space_loop:
|
|
|
|
lda #$a0 ; pad with ' '
|
|
|
|
sta (namlo),Y
|
|
|
|
iny
|
|
|
|
dex
|
|
|
|
bne space_loop
|
|
|
|
|
|
|
|
done_name_loop:
|
|
|
|
|
|
|
|
; open and read a file
|
2019-05-07 04:28:42 +00:00
|
|
|
; loads to whatever it was BSAVED at (default is $2000)
|
2019-05-07 00:16:45 +00:00
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
jsr read_file ; read PT3 file from disk
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
;=========================
|
|
|
|
; Print Info
|
|
|
|
;=========================
|
|
|
|
|
|
|
|
jsr clear_bottoms ; clear bottom of page 0/1
|
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
; NUL terminate the strings we want to print
|
|
|
|
lda #0
|
|
|
|
sta PT3_LOC+$3E
|
|
|
|
sta PT3_LOC+$62
|
|
|
|
|
|
|
|
; print title
|
|
|
|
|
|
|
|
lda #>(PT3_LOC+$1E) ; point to header title
|
2019-05-07 00:16:45 +00:00
|
|
|
sta OUTH
|
2019-05-07 04:28:42 +00:00
|
|
|
lda #<(PT3_LOC+$1E)
|
2019-05-07 00:16:45 +00:00
|
|
|
sta OUTL
|
|
|
|
|
|
|
|
lda #20 ; VTAB 20: HTAB from file
|
|
|
|
jsr print_header_info
|
|
|
|
|
|
|
|
; Print Author
|
2019-05-07 04:28:42 +00:00
|
|
|
|
|
|
|
lda #>(PT3_LOC+$42) ; point to header title
|
|
|
|
sta OUTH
|
|
|
|
lda #<(PT3_LOC+$42)
|
|
|
|
sta OUTL
|
|
|
|
|
2019-05-07 00:16:45 +00:00
|
|
|
lda #21 ; VTAB 21: HTAB from file
|
|
|
|
jsr print_header_info
|
|
|
|
|
|
|
|
; Print clock
|
2019-05-14 18:25:13 +00:00
|
|
|
lda #'0'+$80
|
|
|
|
sta $7D0+13
|
|
|
|
sta $7D0+13+2
|
|
|
|
sta $7D0+13+3
|
|
|
|
sta $BD0+13
|
|
|
|
sta $BD0+13+2
|
|
|
|
sta $BD0+13+3
|
|
|
|
|
|
|
|
sta $7D0+13+7
|
|
|
|
sta $7D0+13+9
|
|
|
|
sta $7D0+13+10
|
|
|
|
sta $BD0+13+7
|
|
|
|
sta $BD0+13+9
|
|
|
|
sta $BD0+13+10
|
|
|
|
|
|
|
|
lda #':'+$80
|
|
|
|
sta $7D0+13+1
|
|
|
|
sta $BD0+13+1
|
|
|
|
sta $7D0+13+8
|
|
|
|
sta $BD0+13+8
|
|
|
|
|
|
|
|
lda #'/'+$80
|
|
|
|
sta $7D0+13+5
|
|
|
|
sta $BD0+13+5
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
; lda #23 ; VTAB 23: HTAB from file
|
|
|
|
; jsr print_header_info
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
; Print Left Arrow (INVERSE)
|
|
|
|
lda #'<'
|
|
|
|
sta $750
|
|
|
|
sta $B50
|
|
|
|
|
|
|
|
lda #'-'
|
|
|
|
sta $751
|
|
|
|
sta $B51
|
|
|
|
|
|
|
|
; Print Rright Arrow (INVERSE)
|
|
|
|
lda #'-'
|
|
|
|
sta $776
|
|
|
|
sta $B76
|
|
|
|
|
|
|
|
lda #'>'
|
|
|
|
sta $777
|
|
|
|
sta $B77
|
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
jsr pt3_init_song
|
2019-05-07 00:16:45 +00:00
|
|
|
|
2019-05-14 18:25:13 +00:00
|
|
|
;=================================
|
|
|
|
; BLARCH
|
|
|
|
;=================================
|
|
|
|
lda #$0
|
|
|
|
sta current_line
|
|
|
|
sta current_subframe
|
|
|
|
sta current_pattern
|
|
|
|
|
|
|
|
frame_count_loop:
|
|
|
|
|
|
|
|
lda current_line
|
|
|
|
bne fc_pattern_good
|
|
|
|
lda current_subframe
|
|
|
|
bne fc_pattern_good
|
|
|
|
|
|
|
|
; load a new pattern in
|
|
|
|
jsr pt3_set_pattern
|
|
|
|
|
2019-05-15 18:13:54 +00:00
|
|
|
lda DONE_SONG
|
2019-05-14 18:25:13 +00:00
|
|
|
beq fc_pattern_good
|
|
|
|
jmp done_counting
|
|
|
|
|
|
|
|
fc_pattern_good:
|
|
|
|
lda current_subframe
|
|
|
|
bne fc_line_good
|
|
|
|
|
|
|
|
jsr pt3_decode_line
|
|
|
|
|
|
|
|
lda pt3_pattern_done
|
|
|
|
bne fc_line_good
|
|
|
|
|
|
|
|
inc current_pattern ; increment pattern
|
|
|
|
lda #0
|
|
|
|
sta current_line
|
|
|
|
sta current_subframe
|
|
|
|
jmp frame_count_loop
|
|
|
|
|
|
|
|
fc_line_good:
|
|
|
|
inc current_subframe ; subframe++
|
|
|
|
lda current_subframe
|
|
|
|
cmp pt3_speed ; if we hit pt3_speed, move to next
|
|
|
|
bne fc_do_frame
|
|
|
|
|
|
|
|
fc_next_line:
|
|
|
|
lda #0 ; reset subframe to 0
|
|
|
|
sta current_subframe
|
|
|
|
|
|
|
|
inc current_line ; and increment line
|
|
|
|
lda current_line
|
|
|
|
|
|
|
|
cmp #64 ; always end at 64.
|
|
|
|
bne fc_do_frame ; is this always needed?
|
|
|
|
|
|
|
|
fc_next_pattern:
|
|
|
|
lda #0 ; reset line to 0
|
|
|
|
sta current_line
|
|
|
|
|
|
|
|
inc current_pattern ; increment pattern
|
|
|
|
|
|
|
|
fc_do_frame:
|
|
|
|
inc time_frame
|
|
|
|
lda time_frame
|
|
|
|
cmp #50
|
|
|
|
bne fc_bayern
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta time_frame
|
|
|
|
|
|
|
|
; see if overflow low s
|
|
|
|
lda $BD0+13+10
|
|
|
|
cmp #'9'+$80
|
|
|
|
bne inc_low_s
|
|
|
|
|
|
|
|
; see if overflow high s
|
|
|
|
lda $BD0+13+9
|
|
|
|
cmp #'5'+$80
|
|
|
|
bne inc_high_s
|
|
|
|
|
|
|
|
inc $7D0+13+7
|
|
|
|
inc $BD0+13+7
|
|
|
|
|
|
|
|
lda #'0'+$80
|
|
|
|
sta $7D0+13+9
|
|
|
|
sta $BD0+13+9
|
|
|
|
jmp clear_low_s
|
|
|
|
|
|
|
|
inc_high_s:
|
|
|
|
inc $7D0+13+9
|
|
|
|
inc $BD0+13+9
|
|
|
|
|
|
|
|
clear_low_s:
|
|
|
|
lda #'0'+$80
|
|
|
|
sta $7D0+13+10
|
|
|
|
sta $BD0+13+10
|
|
|
|
|
|
|
|
jmp inc_done
|
|
|
|
|
|
|
|
inc_low_s:
|
|
|
|
inc $7D0+13+10
|
|
|
|
inc $BD0+13+10
|
|
|
|
|
|
|
|
inc_done:
|
|
|
|
|
|
|
|
fc_bayern:
|
|
|
|
jmp frame_count_loop
|
|
|
|
|
|
|
|
|
|
|
|
done_counting:
|
|
|
|
|
|
|
|
; re-init, as we've run through it
|
|
|
|
lda #0
|
|
|
|
sta DONE_PLAYING
|
|
|
|
sta current_pattern
|
|
|
|
|
|
|
|
jsr pt3_init_song
|
|
|
|
|
2019-05-07 00:16:45 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
|
|
;===================
|
|
|
|
; print header info
|
|
|
|
;===================
|
|
|
|
; shortcut to print header info
|
|
|
|
; a = VTAB
|
|
|
|
|
|
|
|
print_header_info:
|
|
|
|
|
|
|
|
sta CV
|
2019-05-07 04:28:42 +00:00
|
|
|
lda #4
|
2019-05-07 00:16:45 +00:00
|
|
|
sta CH
|
|
|
|
jmp print_both_pages ; print, tail call
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;==================
|
|
|
|
; Get filename
|
|
|
|
;==================
|
|
|
|
; WHICH_FILE holds number
|
|
|
|
; MAX_FILES has max
|
|
|
|
; Scroll through until find
|
|
|
|
; point INH:INL to it
|
|
|
|
get_filename:
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
ldx WHICH_FILE
|
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
lda #<song_list ; point to filename
|
2019-05-07 00:16:45 +00:00
|
|
|
sta INL
|
2019-05-07 04:28:42 +00:00
|
|
|
lda #>song_list
|
2019-05-07 00:16:45 +00:00
|
|
|
sta INH
|
|
|
|
|
|
|
|
get_filename_loop:
|
|
|
|
cpx #0
|
|
|
|
beq filename_found
|
|
|
|
|
|
|
|
inner_loop:
|
|
|
|
iny
|
|
|
|
lda (INL),Y
|
|
|
|
bne inner_loop
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
|
|
|
dex
|
|
|
|
jmp get_filename_loop
|
|
|
|
|
|
|
|
filename_found:
|
|
|
|
tya
|
|
|
|
clc
|
|
|
|
adc INL
|
|
|
|
sta INL
|
|
|
|
lda INH
|
|
|
|
adc #0
|
|
|
|
sta INH
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
;===============================
|
|
|
|
; Increment file we want to load
|
|
|
|
;===============================
|
|
|
|
increment_file:
|
|
|
|
inc WHICH_FILE
|
|
|
|
lda WHICH_FILE
|
|
|
|
cmp #NUM_FILES
|
|
|
|
bne done_increment
|
|
|
|
lda #0
|
|
|
|
sta WHICH_FILE
|
|
|
|
done_increment:
|
|
|
|
rts
|
|
|
|
|
|
|
|
;===============================
|
|
|
|
; Decrement file we want to load
|
|
|
|
;===============================
|
|
|
|
decrement_file:
|
|
|
|
dec WHICH_FILE
|
|
|
|
bpl done_decrement
|
|
|
|
lda #(NUM_FILES-1)
|
|
|
|
sta WHICH_FILE
|
|
|
|
done_decrement:
|
|
|
|
rts
|
|
|
|
|
2019-05-14 18:25:13 +00:00
|
|
|
;=========
|
|
|
|
; vars
|
|
|
|
;=========
|
|
|
|
|
|
|
|
|
|
|
|
time_frame: .byte $0
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-07 00:16:45 +00:00
|
|
|
;==========
|
|
|
|
; filenames
|
|
|
|
;==========
|
|
|
|
|
2019-05-07 04:28:42 +00:00
|
|
|
song_list:
|
2019-05-07 00:16:45 +00:00
|
|
|
|
|
|
|
.include "song_list.inc"
|
|
|
|
|
|
|
|
;=========
|
|
|
|
;routines
|
|
|
|
;=========
|
|
|
|
.include "../asm_routines/gr_offsets.s"
|
|
|
|
.include "text_print.s"
|
2019-05-15 15:55:43 +00:00
|
|
|
.include "mockingboard_a.s"
|
2019-05-07 04:28:42 +00:00
|
|
|
.include "gr_fast_clear.s"
|
2019-05-07 00:16:45 +00:00
|
|
|
.include "../asm_routines/pageflip.s"
|
|
|
|
;.include "../asm_routines/gr_unrle.s"
|
|
|
|
.include "../asm_routines/gr_setpage.s"
|
|
|
|
.include "qkumba_rts.s"
|
|
|
|
.include "../asm_routines/gr_hlin.s"
|
|
|
|
.include "../asm_routines/keypress_minimal.s"
|
2019-05-07 04:28:42 +00:00
|
|
|
;.include "rasterbars.s"
|
|
|
|
;.include "volume_bars.s"
|
2019-05-07 00:16:45 +00:00
|
|
|
.include "interrupt_handler.s"
|
2019-05-07 15:17:46 +00:00
|
|
|
.include "pt3_lib.s"
|
2019-05-07 04:28:42 +00:00
|
|
|
|
2019-05-07 00:16:45 +00:00
|
|
|
;=========
|
|
|
|
; strings
|
|
|
|
;=========
|
|
|
|
;mocking_message: .asciiz "LOOKING FOR MOCKINGBOARD IN SLOT #4"
|
|
|
|
not_message: .byte "NOT "
|
|
|
|
found_message: .asciiz "FOUND"
|
|
|
|
;done_message: .asciiz "DONE PLAYING"
|
|
|
|
loading_message: .asciiz "LOADING"
|
|
|
|
|