<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
re: music5</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I got further along with this.&nbsp; The gfortran compiled pass1 was looking for an older libgfortran.so.3, but I fixed that problem with LD_LIBRARY_PATH and a symlink.</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I also found the music5 examples file in Snd.&nbsp; Sorry I missed that earlier, and took a quick look-see at the MusicV Manual in 'Technology of Computer Music'.</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
But I'm still stuck on reading the input file for pass1.&nbsp; Still not sure what it wants for filename?</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
$ ./pass1</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;TYPE FILE NAME</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
'INS1.f'</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
At line 44 of file pass1.f (unit = 1, file = '')</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Fortran runtime error: File ''INS1' does not exist</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
-------------------</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
from pass1.f</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;39 &nbsp;99 &nbsp; FORMAT(' TYPE FILE NAME')</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;40 &nbsp;999 &nbsp;FORMAT(A5)</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;41 &nbsp; &nbsp; &nbsp; PRINT 99</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;42 &nbsp; &nbsp; &nbsp; READ 999,FLNM</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;43</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;44 &nbsp; &nbsp; &nbsp; open(inputfile, FILE=FLNM, STATUS='OLD')</div>
<div class="elementToProof" style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;45 &nbsp; &nbsp; &nbsp; open(outputfile, FILE='pass1.data')</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
&nbsp;46 C  &nbsp; CALL IFILE(1,FLNM)</div>
<div id="appendonsend"></div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> bil@ccrma.Stanford.EDU &lt;bil@ccrma.Stanford.EDU&gt;<br>
<b>Sent:</b> Thursday, June 18, 2026 12:34 PM<br>
<b>To:</b> James Hearon &lt;j_hearon@hotmail.com&gt;<br>
<b>Cc:</b> cmdist@ccrma.Stanford.EDU &lt;cmdist@ccrma.Stanford.EDU&gt;<br>
<b>Subject:</b> Re: [CM] music5</font>
<div>&nbsp;</div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">That input file looks like a version of one of the<br>
inputs in music5-examples.&nbsp; Save it in some file,<br>
then call pass1 &lt;file&gt;, then the rest of the steps.<br>
music5-examples also has some directions.&nbsp; As it says the<br>
output is a raw headerless file; music5-examples<br>
gives one way to read it into Snd so you can play it.<br>
In those days (1971), programs didn't always give you<br>
options for output names or whatever.&nbsp; I like the comment<br>
&quot;THIS VERSION RUNS ON THE PDP10, JULY 14, 1971&quot; --<br>
my birthday!&nbsp; I started programming in 1969 -- I can't<br>
believe it was almost 57 years ago!<br>
<br>
</div>
</span></font></div>
</body>
</html>