From owner-freebsd-hackers@FreeBSD.ORG Mon Aug 4 10:33:23 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3176937B401 for ; Mon, 4 Aug 2003 10:33:23 -0700 (PDT) Received: from HAL9000.homeunix.com (ip114.bella-vista.sfo.interquest.net [66.199.86.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24B8E43FA3 for ; Mon, 4 Aug 2003 10:33:20 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.9/8.12.9) with ESMTP id h74HXImQ004199; Mon, 4 Aug 2003 10:33:18 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.9/8.12.9/Submit) id h74HXIWA004198; Mon, 4 Aug 2003 10:33:18 -0700 (PDT) (envelope-from das@FreeBSD.ORG) Date: Mon, 4 Aug 2003 10:33:18 -0700 From: David Schultz To: pat bey Message-ID: <20030804173318.GA3935@HAL9000.homeunix.com> Mail-Followup-To: pat bey , freebsd-hackers@freebsd.org References: <20030802195041.36168.qmail@web41201.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030802195041.36168.qmail@web41201.mail.yahoo.com> cc: freebsd-hackers@FreeBSD.ORG Subject: Re: Assembly interrupts and Developers handbook X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2003 17:33:23 -0000 On Sat, Aug 02, 2003, pat bey wrote: > Secondly, What can I find a list of other interrupts within > FreeBSD like the int 80h. Or is this the only interrupt. Like > example interrupt for video stuff, disk access ....etc. .etc On x86, all system calls are made through int 80h with %eax set to the syscall number. See src/sys/kern/syscalls.master. In general, you don't access the hardware directly unless you're writing a device driver.