mirror of
https://github.com/rvtr/ntr_bootrom.git
synced 2025-10-31 07:11:11 -04:00
36 lines
830 B
ArmAsm
36 lines
830 B
ArmAsm
;********************************************************************
|
|
; IRIS-SUBPモニタプログラム サウンドテーブルデータ
|
|
;********************************************************************
|
|
|
|
AREA SoundData, DATA, READONLY
|
|
|
|
INCLUDE IrisSubpDefineArm.s
|
|
INCLUDE IrisSubpMemoryMapArm.s
|
|
|
|
INCLUDE IrisSubpMonDefineArm.s
|
|
INCLUDE IrisSubpMonMemoryMapArm.s
|
|
|
|
|
|
;====================================================================
|
|
; サウンドテーブルデータ
|
|
;====================================================================
|
|
GLOBAL snd_sin_table
|
|
GLOBAL snd_ptable
|
|
GLOBAL snd_vtable
|
|
GLOBAL snd_data_start
|
|
GLOBAL snd_data_end
|
|
|
|
snd_data_start
|
|
snd_ptable
|
|
INCBIN snd_ptable.bin
|
|
snd_vtable
|
|
INCBIN snd_vtable.bin
|
|
snd_sin_table
|
|
INCBIN snd_sinetable.bin
|
|
snd_data_end
|
|
|
|
|
|
END
|
|
|
|
|