I have a fairly small (~10kB), uncompressed audio file that I would like to include in ROM. The microcontroller is 8-bit 8051 compatible (AT89C55), and the audio file has 8-bit resolution so I can just transfer it byte-by-byte to a DAC at whatever playback speed I wish.
I am using Keil's uVision, in an A51 assembly language project. How might I conveniently include an uninterpreted stream of bytes such as this, and crawl through it?