CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (157 messages)

#116291 #Amiga Downloads Message #116308
From: JEFFREY C. DEGE Amiga User Forum · Communications September 28, 1993 10:16 PM
The Macintosh uses a cooperative system to appear to run multiple programs simultaneously. The Amiga uses a preemptive system to appear to run multiple programs simultaneously. By the usual(i.e., academic courses in OS design), only the latter counts as “true'' multitasking. But from the user's point of view, they are…
#107980 #AWK for AMI ? Message #108092
From: JEFFREY C. DEGE AmigaTech Forum · Tool Box June 8, 1990 8:47 PM
I've been looking for an AWK for the Amiga myself, for quite some time. Who'd have believed that someone would post a GAWK and not add AWK to the keyword list 😉
#107193 Complex data type Message #107236
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 31, 1990 8:58 PM
I was mainly trying to show a way of dealing with extremely complex data types on compilers that choke on them. The array in question was proposed by the author of the message I was replying to. As for accessing an individual int from within this kind of mess, I've…
#106874 Complex data type Message #107176
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 31, 1990 12:38 AM
I usually build up complicated data declarations out of typedefs. typedef int ctype[10]; typedef ctype *btype[2]; typedef btype *atype[4]; atype *BIGA[100]; As for referencing an individual int in this mess, you can do it just like you would expect, but normally you end up referring to the defined types. In…
#106924 C/AllocMem() Message #107160
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 30, 1990 11:50 PM
Right. sizeof() isn't a function, so sizeof(*foo) shouldn't generate a warning. When I first brought this up (6 mos. back or so) I seem to remember someone from Lattice saying that they had taken a shot at fixing this but it lead to real unitialized variables slipping through the cracks…
#106812 C/AllocMem() Message #106830
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 28, 1990 9:18 PM
Well, Lattice DOES have a problem. Anytime you do anything like: anytype *foo; foo = (anytype *) malloc(sizeof(*foo)); you get the folowing: Warning 94: uninitialized auto variable "foo" It's a minor bug (everything compiles just fine), but some folks INSIST on warning-free code.
#105976 Compiler help Message #106005
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 23, 1990 7:43 PM
I see two possible problems. First, you usually want to put the compiler library before amiga.lib. There are some functions that exist in both, and you usually want the ones from the compiler library. Second, there is some startup code that has to go before your program code. With Lattice,…
From: JEFFREY C. DEGE AmigaTech Forum · System Software May 17, 1990 3:54 PM
Three important questions in re. WB 2.0: 1.) Does WSHELL work? I'd expect it to depend heavily on DOS internals, and I understand that there have been some significant changes there. Does this break WSHELL? 2.) I was playing around with my dealer's 3000 and I noticed that there didn't…
#104689 Amigados 2 is great! Message #104770
That's "Yah, you betcha!".
#104276 SAS Rumor Message #104404
You finished that with …6433, and since the next digit is an 8, that should have been …6434. OOPS!
#104363 Value of Comments Message #104398
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 13, 1990 5:33 PM
So would I, but what if your working for such a person?
#104181 #Value of Comments Message #104239
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 12, 1990 10:40 PM
What about job security? I mean, if anybody can maintain the code, they don't need you!
#103536 SAS Rumor Message #103630
I agree, the 28S is great, and I had a great deal of fun with mine, but I sold it last week so I could afford the 48SX. If you are a hard-core RPN freak, you really should take a look at it. It corrects the only weakness I could…
#103438 #SAS Rumor Message #103495
Forget the HP-28S. Buy the HP-48SX. Everything the 28 has, plus expandability, 2-way IR link, an RS-232 port, and built-in Kermit.
#102900 #A3000 Video Message #103318
Apparently C/A showed up at the "Strictly Business" expo here in MPLS. I was just talking to a guy from the ACM club (who doesn't have an Amiga, but has talked to a few of us about it.) He asked if the AMiga would run Unix. Answer – "No, but…
#102183 "Good" Code Message #102219
From: JEFFREY C. DEGE AmigaTech Forum · C Programming May 3, 1990 11:00 PM
Maybe it's just me, but I've always found that it took a fair knowledge of how a particular compiler generated code in order to figure out what ILAC was doing. Without that knowledge, ILAC is not so much confusing as misleading. A separate assembly module, on the other hand, is…
#99996 New WB Multithread? Message #100150
From: JEFFREY C. DEGE AmigaTech Forum · Hot News and Rumors April 26, 1990 7:10 PM
> Starting a program is multithreaded, but not reading a directory. You WANT to processes doing a directory search at the same time? Sounds like thrash-time to me…
#32402 CINHAL.LZH Message #32419
From: JEFFREY C. DEGE Amiga Arts Forum · Ramblings April 23, 1990 10:35 PM
Then, of course, there are those of us who DESPISE logos on graphics. I mean, what's the point? All it does it make it impossible to use teh image for anything more than looking at on your computer. You can't use the stuff for video work, etc. It seriously reduces…
#24589 Small C Source Code Message #24597
From: JEFFREY C. DEGE DDJ Forum · General/DDJ office March 27, 1990 1:05 AM
If I recall, the source for Small C was included in "Doctor Dobb's Toolbook of C", (which I saw at the library, it may be out of print 😉
#95054 need C help Message #95059
From: JEFFREY C. DEGE AmigaTech Forum · C Programming March 22, 1990 5:48 PM
Have you ever looked at static initialization? Try: static int Array[] = {0,1,2,3,4,5,6,7,8,9}; This creates an array of 10 integers initialized to 0..9. Also, keep in mind that variables declared inside functions without the static keyword are allocated on the stack, while static variables and variables declared outside functions aren't.…
#94723- #Inside jokes for C guys Message #94809
From: JEFFREY C. DEGE AmigaTech Forum · Ramblings March 20, 1990 4:30 PM
'-ce'? BULL! '-nce', and not only that, '-psl', too! (so there 😉
#94557 #C_ToolShed Message #94661
From: JEFFREY C. DEGE AmigaTech Forum · Hot News and Rumors March 19, 1990 12:16 PM
I just had another thought. Howabout the next time a C code formatting argument gets started we enforce INDENT options as a common vocabulary. I can see it now: " USE '-ce'!" " NO, you fool, USE '-nce'!"
#94557 C_ToolShed Message #94658
From: JEFFREY C. DEGE AmigaTech Forum · Hot News and Rumors March 19, 1990 12:02 PM
I just took a quick look at your upload, and they have the same copyright notice. Your port is noticably larger, but I notice that you wrote up a decent Amiga version readme. Me, I just added a comment to the existing doc (right after where the guy who had…
#93727 C_ToolShed Message #94124
From: JEFFREY C. DEGE AmigaTech Forum · Hot News and Rumors March 14, 1990 12:25 PM
I think you'll find that there is already a version of indent in the libs. I found a UNIX=>MsDOS port on BIX and recompiled it for the Amiga a couple of months ago. The only changes I made to the code were in dealing with the difference in path names.…
From: JEFFREY C. DEGE AmigaTech Forum · System Software March 4, 1990 10:57 PM
It isn't automatic variables that cause problems with reentrant code. They are allocated on the stack, so you have a different copy each time you run the function. It's the static variables that cause the problems. These are the variables that end up in the data segments. It isn't too…
#92689- Stumpers for Darwin Message #92742
From: JEFFREY C. DEGE AmigaTech Forum · Ramblings March 4, 1990 2:00 PM
I didn't say anything about malleable genes. That was somebody else. All I was claiming was that dogs didn't descend from wolves, but it is obvious that they have a common background. Anyway I'm dropping out of this thread.
#92629- #Dogs, the Species Message #92741
From: JEFFREY C. DEGE AmigaTech Forum · Ramblings March 4, 1990 2:00 PM
I still maintain that dogs and wolves descended from a common anscestor, not dogs from wolves. Its a minor distinction, though, and I'll let it lie.
#92379- UNIX Amiga Message #92491
From: JEFFREY C. DEGE AmigaTech Forum · System Software March 2, 1990 5:23 PM
I see the start of a GREAT rumor in your last post. Is it, or is it not, true that the non-disclosure agreement expires at the end of March (don't tell, it's covered by the non-disclosure agreement. 😉
#91895- User Beta-testers Please Message #92029
From: JEFFREY C. DEGE AmigaTech Forum · Ramblings February 26, 1990 7:59 PM
OOPS! C/A hasn't admitted that 1.4 is in Beta, yet. From what I've heard saying, however indirectly, that 1.4 is in Beta is a violation of the non-disclosure agreement. (I wouldn't be surprised if it was a violation of the non-disclosure agreement to disclose the text of the non-disclosure agreement…
From: JEFFREY C. DEGE AmigaTech Forum · Hot News and Rumors January 27, 1990 7:08 PM
Ahh, but hasn't C/A licensed UNIX from AT&T? The rumor was that Amix had met AT&T's requirements for use of the name. It had something to do with attaining complete compatability, etc. In any case, its a rumor, and I thought that someone here would have some real information.
From: JEFFREY C. DEGE AmigaTech Forum · Hot News and Rumors January 26, 1990 8:27 PM
I've heard rumors that C/A is considering dropping the AMIX name, and intends to market its UNIX as (surprise) UNIX, System V, version 4.
#86607- DIR to text file? Message #86667
From: JEFFREY C. DEGE AmigaTech Forum · Talk to the Trade January 26, 1990 8:26 PM
You've already gotten one answer, apparently from a WSHELL user, because he's put the redirect at the end of the command line. In a plain-jane CLI the redirect must occur before an arguments, so try: dir >sys:filename opt a dir >prt: opt a
#14228 More on CED/GOMF Message #14258
From: JEFFREY C. DEGE Amiga Vendor Forum · ASDG December 31, 1989 5:22 PM
When I do this on purpose I bring it down to less than 20k. I've never had it happen to me on purpose in more than 50k. The times it has surprised me I haven't been keepin track of just how much memory was free.
#14234 More on CED/GOMF Message #14257
From: JEFFREY C. DEGE Amiga Vendor Forum · ASDG December 31, 1989 5:22 PM
Nope. GOMF seems to be a major part of the problem. It seems that when I haven't sufficient memory to open a file requester and try anyway, with GOMF I get a lowmem stomp, without GOMF I get a clean failure. (By the way, I brought this up on BIX,…
#14206 #More on CED/GOMF Message #14223
From: JEFFREY C. DEGE Amiga Vendor Forum · ASDG December 30, 1989 4:37 PM
This may be unrelated, but I have seen memwatch catch low memory writes on CED regularly when I open the file requeter in a low-memory situation. Memory location $00000078 is be overwritten with $00089810. Similarly, the next time I select an icon from workbench the system guru's. I'm using CED…
#81285 Unarcing big files Message #81307
From: JEFFREY C. DEGE AmigaTech Forum · Talk to the Trade December 30, 1989 4:37 PM
Put the disk with probe.arc in df1:, the disk you want the unarced files on in df0: then type: cd df0: arc x df1:probe.arc If you don't have two drives, try copying probe.arc to ram:, then try: cd df0: arc x ram:probe.arc If you haven't enough ram, then try: cd…
#Parallel -> Serial Message #80632
From: JEFFREY C. DEGE AmigaTech Forum · Telecommunications December 26, 1989 11:14 PM
We have someone on one of our local boards who is looking at getting a parallel to serial converter to attach to the Amiga's parallel port as a cheap way of attaching a second modem to an Amiga 500. It doesn't seem that easy a problem. The hardware shouldn't be…
#80230 Janus software Message #80236
From: JEFFREY C. DEGE AmigaTech Forum · System Software December 23, 1989 6:56 PM
C/A uploaded some fixes to the Janus stuff to BIX, but these files in no way make up a workable Janus setup. You still need the full Janus 2.0 disk.
#79585- Multiuser DB via ARexx? Message #79607
From: JEFFREY C. DEGE AmigaTech Forum · System Software December 19, 1989 3:13 PM
Is it just me, or wouldn't it make sense to recode the AREXX interface in some non-interpreted language? I think AREXX is fascinating, and all, but if I was to try something like this I'd work out the bugs of the idea in AREXX, then recode in C. AREXX isn't…
#25658 IFFPAC file Message #25660
From: JEFFREY C. DEGE Amiga Arts Forum · General Help December 7, 1989 5:12 PM
Click in the close box in the upper left corner of the screen. It's invisible, but it's there (so are the depth gadgets in the upper right.)
#74398 NTSC/PAL Jumper? Message #74427
From: JEFFREY C. DEGE AmigaTech Forum · Talk to the Trade November 15, 1989 7:56 AM
I have a rev 4.2 motherboard and there is a spot labeled J102, but there isn't any jumper there, just a pair of solder patches where I would expect it to be installed. Looking from the top of the motherboard it looks as if the patches are unconnected, which is…
#NTSC/PAL Jumper? Message #74291
From: JEFFREY C. DEGE AmigaTech Forum · Talk to the Trade November 14, 1989 6:14 PM
I was lead to understand that Obese Agnes would allow my Amy to switch from NTSC to PAL based on the placement of jumper J102. Today I discovered that there is no J102 on my machine (rev 4.2 B2000), just a couple of solder spots and the letters 'J102'. Since…
From: JEFFREY C. DEGE AmigaTech Forum · C Programming October 31, 1989 4:30 PM
While you're looking at things to fix, you might think about fixing the default tool on your disk icons. You don't have "sys:system/diskcopy" there; without it you can't copy disks from the WB. Some people do things like that, you know. 😉
#71904 A68K Message #71935
From: JEFFREY C. DEGE AmigaTech Forum · ASM Programming October 31, 1989 10:31 AM
I've got a bunch of different versions of Blink around here. The startup messages are: Blink – Version 5.02 Copyright (c) 1988 Lattice, Inc. All Rights Reserved. (from my Lattice C v. 5.02 disk) Blink – Version 5.0 Copyright (c) 1988 Lattice, Inc. All Rights Reserved. (From my Lattice C…
#71684- #A68K Message #71718
From: JEFFREY C. DEGE AmigaTech Forum · ASM Programming October 29, 1989 6:59 PM
Lattice started numbering BLINK to coincide with their C compiler releases, so if you have their compiler you have a LOWER rev. The release on my HD is 5.02, and I expect that whan I get around to installing the patches I'll have 5.04.
#71342- amiga-IBM data transfer Message #71449
From: JEFFREY C. DEGE AmigaTech Forum · Talk to the Trade October 28, 1989 12:59 AM
The only problem I've ever seen actually documented with PC-Patch had to do with the trackdisk device bug. PC-Patch (and the CrossDOS demo) wouldn't work on a machine with only one floppy installed. I talked to someone else who had had problems with the 2620, but had only one floppy,…
Arexx abs() bug? Message #70726
From: JEFFREY C. DEGE AmigaTech Forum · Other Languages October 22, 1989 9:04 PM
I just ran across a wierd problem with the abs() function in Arexx. Try "say abs(-1)" from Wshell or RX "say abs(-1)" from Ashell (I can't say what happens from a normal CLI or Newshell, I don't have either on my HD). The result is a linefeed. "say abs(-1)+0" or…
#68732 BridgBoard Message #68791
From: JEFFREY C. DEGE AmigaTech Forum · Expansion Hardware October 8, 1989 10:07 AM
The new Janus software (comes with the AT Bridgeboard, available at your dealer's for XT owners) includes a program called PCHard that can be run from the Amiga side to cause the Bridgeboard to do a cold boot. This might be the easiest solution.
From: JEFFREY C. DEGE Amiga Arts Forum · General Help September 30, 1989 7:26 PM
The "Amiga" Plug 'n Print kit I bought was an IBM kit with an Amiga 1000 parallel cable. It came with the IBM manual and a 5×8 slip explaining that there was no difference between the two. The pixel wide space on graphics is eliminated with my board by setting…
From: JEFFREY C. DEGE AmigaTech Forum · Expansion Hardware September 29, 1989 7:36 PM
According to a conversation I had with Microbotics, it is exactly that. With the rev. 6.x motherboards there is a spike on one of the bus lines (I'd give more details, but that's about the limit of my understanding. I'm not a hardware person 😉

Page 1 of 4