From owner-freebsd-questions Wed Jun 19 13:05:02 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA13073 for questions-outgoing; Wed, 19 Jun 1996 13:05:02 -0700 (PDT) Received: from iworks.InterWorks.org (deischen@iworks.interworks.org [128.255.18.10]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id NAA13059 for ; Wed, 19 Jun 1996 13:04:55 -0700 (PDT) Received: by iworks.InterWorks.org (1.37.109.8/16.2) id AA04149; Wed, 19 Jun 1996 15:00:51 -0500 Message-Id: <9606192000.AA04149@iworks.InterWorks.org> Date: Wed, 19 Jun 1996 15:00:51 -0500 From: "Daniel M. Eischen" To: jrclark@netview.net, questions@FreeBSD.org Subject: Re: 430 out of 448 instructions used Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > Hello, I am not familiar enough with the c compiler to know what the > following message means: > > cc -Wall -o aic7xxx_asm ../../dev/aic7xxx/aic7xxx_asm.c > ./aic7xxx_asm -o aic7xxx_seq.h ../../dev/aic7xxx/aic7xxx.seq > 430 out of 448 instructions used. > > It would seem that I want all 448 functions, but then again, I have no idea > what this is trying to tell me. The "cc" and "./aic7xxx_asm" lines above are separate commands, not a continued line from the "cc" command. The first line compiles the aic7xxx "assembler"; this is the program that compiles/assembles the code for the sequencer on the Adaptec aic7xxx adapters. The second line actually runs the assembler, using aic7xxx.seq as the input file, and producing aic7xxx_seq.h which contains the code to be downloaded to the sequencer. The "430 out of 448..." line is an informational message that tells you 430 instruction words were formed; the aic7xxx sequencers can store up to 448 instructions. You can disregard this message (unless it uses more than 448 instructions!). Dan Eischen deischen@iworks.InterWorks.org