Path: utzoo!utgpu!watserv1!watmath!att!dptg!ulysses!andante!mit-eddie!bloom-beacon!e40-008-11.MIT.EDU!bhelf From: bhelf@e40-008-11.MIT.EDU (Bill Helfinstine) Newsgroups: comp.sys.cbm Subject: Re: Save a seq file in assembly Message-ID: <1990Nov27.180147.25744@athena.mit.edu> Date: 27 Nov 90 18:01:47 GMT References: <1854@mentor.cc.purdue.edu> Sender: daemon@athena.mit.edu (Mr Background) Organization: Massachusetts Institute of Technology Lines: 20 In article <1854@mentor.cc.purdue.edu> piskacrj@mentor.cc.purdue.edu (Robert J Piskac) writes: > lda #3 > ldx #$08 > ldy #0 > jsr setlfs If you are going to do a save, the proper secondary address to use is 1. If you use 0, the disk drive thinks you are trying to do a load, and gets confused. So, change it to lda #3 ldx #8 ldy #1 jsr setlfs Bill Helfinstine bhelf@athena.mit.edu