From owner-cvs-all Wed Apr 24 9:25:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BA8C37B421; Wed, 24 Apr 2002 09:25:25 -0700 (PDT) Received: (from gibbs@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3OGOip65620; Wed, 24 Apr 2002 09:24:44 -0700 (PDT) (envelope-from gibbs) Message-Id: <200204241624.g3OGOip65620@freefall.freebsd.org> From: "Justin T. Gibbs" Date: Wed, 24 Apr 2002 09:24:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx/aicasm Makefile aicasm.c aicasm.h aicasm_gram.y aicasm_insformat.h aicasm_macro_gram.y aicasm_macro_scan.l aicasm_scan.l aicasm_symbol.c aicasm_symbol.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gibbs 2002/04/24 09:24:44 PDT Modified files: sys/dev/aic7xxx/aicasm Makefile aicasm.c aicasm.h aicasm_gram.y aicasm_insformat.h aicasm_scan.l aicasm_symbol.c aicasm_symbol.h Added files: sys/dev/aic7xxx/aicasm aicasm_macro_gram.y aicasm_macro_scan.l Log: Add macro functionality. Staticize and allow unique naming of data structures so that more than on sequencer program can be statically compiled into the kernel at a time. Revision Changes Path 1.11 +9 -6 src/sys/dev/aic7xxx/aicasm/Makefile 1.33 +56 -27 src/sys/dev/aic7xxx/aicasm/aicasm.c 1.14 +28 -14 src/sys/dev/aic7xxx/aicasm/aicasm.h 1.16 +428 -58 src/sys/dev/aic7xxx/aicasm/aicasm_gram.y 1.5 +22 -20 src/sys/dev/aic7xxx/aicasm/aicasm_insformat.h 1.1 +164 -0 src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y (new) 1.1 +154 -0 src/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l (new) 1.17 +286 -37 src/sys/dev/aic7xxx/aicasm/aicasm_scan.l 1.15 +50 -20 src/sys/dev/aic7xxx/aicasm/aicasm_symbol.c 1.14 +56 -31 src/sys/dev/aic7xxx/aicasm/aicasm_symbol.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message