home *** CD-ROM | disk | FTP | other *** search
- /* */
-
- l="rxcd.library";if ~show("L",l) then;if ~addlib(l,0,-30) then exit
-
- res = CDTOC('cd0','debug','toc')
- if res~=0 then do
- say res debug.sensekey debug.deverr d2x(debug.asc) d2x(debug.ascq)
- exit
- end
-
- say "FirstTrack:" toc.FirstTrack
- say "LastTrack: " toc.LastTrack
- say "StartAddr: " toc.StartAddr
- say "EndAddr: " toc.EndAddr
- say "Frames: " toc.Frame
- say "Min: " toc.Min
- say "Sec: " toc.Sec
- say "ID: " toc.ID
- say "Num: " toc.Num
- say
-
- do i=0 to toc.num-1
- say i "Track: " toc.i.Track
- say i "StartAddr: " toc.i.StartAddr
- say i "Frames: " toc.i.Frames
- say i "StartMin: " toc.i.StartMin
- say i "StartSec: " toc.i.StartSec
- say i "StartFrame:" toc.i.StartFrame
- say i "Min: " toc.i.Min
- say i "Sec: " toc.i.Sec
- say i "Frame: " toc.i.Frame
- say i "ADR: " toc.i.ADR
- say i "Audio: " toc.i.Audio
- say
- end
-