#: 21322 S10/OS9/6809 (CoCo) 31-Dec-95 22:25:22 Sb: #Happy New Year Fm: Brother Jeremy, CSJW 76477,142 To: All Dear Friends: Once again another year comes to an end. I am grateful for all of you in the OS-9 Community and your allowing me to be a part of it. May the new year be a year of peace, health and happiness for you and those near and dear to you. WIth all best wishes for 1996, Brother Jeremy, CSJW OS9 Users Group Treasurer There is 1 Reply. #: 21324 S10/OS9/6809 (CoCo) 01-Jan-96 14:07:39 Sb: #21322-#Happy New Year Fm: Richard E. Crislip 102746,407 To: Brother Jeremy, CSJW 76477,142 (X) Happy New Year Jeremy: I'm an CoCo 3 OS-9 lurker who uses an Amiga when not CoCo'ing ;) _|_ Cruisen on AutoPilot ----O---- R.E.C. There is 1 Reply. #: 21331 S10/OS9/6809 (CoCo) 08-Jan-96 23:29:13 Sb: #21324-#Happy New Year Fm: Rogelio Perea 72056,1204 To: Richard E. Crislip 102746,407 (X) ..huh... somtimes I lurk, sometimes I do not ;-) Happy new year to all!. This year will be the year for "C" on my CoCo 3. So far, this forum has been tops while finding information on the OS9 C compiler. Thanks to all those CoCo supporters. Rogelio Perea There is 1 Reply. #: 21333 S10/OS9/6809 (CoCo) 10-Jan-96 18:09:54 Sb: #21331-Happy New Year Fm: Richard E. Crislip 102746,407 To: Rogelio Perea 72056,1204 (X) Hi Rogelio: I was wondering if we'd hear from you again 8-) _|_ Cruisen on AutoPilot ----O---- R.E.C. #: 21392 S10/OS9/6809 (CoCo) 16-Mar-96 14:51:37 Sb: #21370-!!!UPGRADE??? Fm: randy pischke 75460,205 To: HARRISON,CLARENCE H. 76336,1402 I have a spare 512K upgrade. I bought a bare board from Radio Shack when I had trouble getting my PBJ upgrade to work. My PBJ upgrade now works fine so you can have my Radio Shack board for $25.00. I will even throw in the memory for nothing. I fix computers for a living so have access to lots of parts. -Randy Pischke #: 21376 S10/OS9/6809 (CoCo) 26-Feb-96 05:14:58 Sb: 25 line windows help. Fm: John L. Wilkerson Jr. 71140,77 To: ALL I used the grfdrv patches to allow a 25 line display. All I get on my windows is the top line moved up one line and a blank line on the bottom. I used xmode to add the extra line.... Interesting note: Supercomm _Does_ give me 25 lines. No other program or the windows alone recognizes the 25th line. Any cluse folks? #: 21399 S10/OS9/6809 (CoCo) 01-Apr-96 10:58:57 Sb: #F$CRC from Basic09 Fm: John Murphy 73077,2305 To: ALL Ok, it ain't pretty, but it should work. Each run displays a different set of numbers, though. What STUPID thing am I doing wrong? I do know for a true CRC, I have to complement the accumulator, but that isn't the problem. John Murphy jmurphydelphi.com TYPE registers=cc,a,b,dp:BYTE; x,y,u:INTEGER DIM regs:registers DIM acc:STRING[3] DIM callcode:BYTE DIM test:STRING[256] test="123456789" REM preinitialize accumulator acc=CHR$($FF)+CHR$($FF)+CHR$($FF) regs.x=ADDR(test) regs.y=LEN(test) regs.u=ADDR(acc) PRINT regs.x; " "; regs.y; " "; regs.u callcode=$17 RUN syscall(callcode,regs) PRINT ASC(MID$(acc,1,1)); " "; ASC(MID$(acc,2,1)); " "; ASC(MID$(acc,3,1)) There is 1 Reply. #: 21403 S10/OS9/6809 (CoCo) 06-Apr-96 21:27:49 Sb: #21399-#F$CRC from Basic09 Fm: David Breeding 72330,2051 To: John Murphy 73077,2305 (X) > Ok, it ain't pretty, but it should work. > Each run displays a different set of numbers, though. > What STUPID thing am I doing wrong? > TYPE registers=cc,a,b,dp:BYTE; x,y,u:INTEGER > DIM regs:registers > DIM acc:STRING[3] > DIM callcode:BYTE > DIM test:STRING[256] > test="123456789" > REM preinitialize accumulator > acc=CHR$($FF)+CHR$($FF)+CHR$($FF) Well, I don't know why, but it seems that this doesn't work. Maybe it's because $FF is the end-of-string delimiter for Basic09. Try the sequence (for count=0 to 2 print peek(addr(acc)+count) and see. For some reason, the Print below, if put up here, gives $FF, but it is not the case. Try the sequence, for count=0 to 3, poke addr(acc)+count, $ff I have not tried it on a true module, but at least it gives consistent results. > regs.x=ADDR(test) > regs.y=LEN(test) > regs.u=ADDR(acc) > PRINT regs.x; " "; regs.y; " "; regs.u > callcode=$17 > RUN syscall(callcode,regs) > PRINT ASC(MID$(acc,1,1)); " "; ASC(MID$(acc,2,1)); " "; > ASC(MID$(acc,3,1)) -- David Breeding -- CIS 72330,2051 | Delphi DBREEDING | dbree@duo-county.com Composed with InfoXpress/OSK Vr. 1.02 & VED Vr. 2.4.0 There is 1 Reply. #: 21404 S10/OS9/6809 (CoCo) 14-Apr-96 14:11:10 Sb: #21403-#F$CRC from Basic09 Fm: John Murphy 73077,2305 To: David Breeding 72330,2051 (X) David, thanks for the reply. Alan DeKok pointed out to me that the "correct" way to do this is to use an array of bytes, rather than a character string. When I changed to Bytes, it worked much better. Thanks, John Murphy There is 1 Reply. #: 21405 S10/OS9/6809 (CoCo) 14-Apr-96 18:49:12 Sb: #21404-F$CRC from Basic09 Fm: David Breeding 72330,2051 To: John Murphy 73077,2305 (X) > David, thanks for the reply. > > Alan DeKok pointed out to me that the "correct" way to do this is to use > an array of bytes, rather than a character string. When I changed to > Bytes, it worked much better. Yes, I thought that that would probably would be the more "correct" way but this still works. What I did was just a quick-and-dirty method.. -- David Breeding -- CIS 72330,2051 | Delphi DBREEDING | dbree@duo-county.com Composed with InfoXpress/OSK Vr. 1.02 & VED Vr. 2.4.0 #: 21407 S10/OS9/6809 (CoCo) 17-Apr-96 13:09:36 Sb: OS9 Disk Image Fm: Kenneth Inman 75054,3217 To: all Well, I'm back here again with the same problem. I cannot create an image of my OS9 level 1 disk for my emulator to use. I've tried everything. Even tried the suggested method of covering the index hole and opening & closing the drive door slowly during retries. It just will NOT copy. If any of you have been able to accomplish this....let me know how you did it. I'm at my wits end here... thx! #: 21421 S10/OS9/6809 (CoCo) 03-Jun-96 01:08:42 Sb: #21370-!!!UPGRADE??? Fm: - Visitor 102020,235 To: HARRISON,CLARENCE H. 76336,1402 I have an extra 512K upgrade if you are interested. Send mail to : gforce@matrix.infomatch.com on the internet in about a week. ttul Wes #: 21421 S10/OS9/6809 (CoCo) 03-Jun-96 01:08:42 Sb: #21370-!!!UPGRADE??? Fm: - Visitor 102020,235 To: HARRISON,CLARENCE H. 76336,1402 I have an extra 512K upgrade if you are interested. Send mail to : gforce@matrix.infomatch.com on the internet in about a week. ttul Wes